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

Custom() public method

Constructs a new Custom kernel.
public Custom ( Func function ) : System
function Func
return System
        public Custom(Func<double[], double[], double> function)
        {
            this.func = function;
        }