Accord.Statistics.Kernels.Custom.Function C# (CSharp) Method

Function() public method

Custom kernel function.
public Function ( double x, double y ) : double
x double Vector x in input space.
y double Vector y in input space.
return double
        public override double Function(double[] x, double[] y)
        {
            return func(x, y);
        }