Click or drag to resize
Accord.NET (logo)

IKernelT Interface

Kernel function interface.

Namespace:  Accord.Statistics.Kernels
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IKernel<in T>
Request Example View Source

Type Parameters

T

The IKernelT type exposes the following members.

Methods
  NameDescription
Public methodFunction
The kernel function.
Top
Remarks

In Machine Learning and statistics, a Kernel is a function that returns the value of the dot product between the images of the two arguments.

k(x,y) = ‹S(x),S(y)›

References:

See Also