|
KernelBaseTInputFunction Method
|
The kernel function.
Namespace:
Accord.Statistics.Kernels
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public abstract double Function(
TInput x,
TInput y
)
Public MustOverride Function Function (
x As TInput,
y As TInput
) As Double
Request Example
View SourceParameters
- x
- Type: TInput
Vector x in input space. - y
- Type: TInput
Vector y in input space.
Return Value
Type:
Double
Dot product in feature (kernel) space.
Implements
IKernelTFunction(T, T)See Also