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

Bessel() public method

Constructs a new Bessel Kernel.
public Bessel ( int order, double sigma ) : System
order int The order for the Bessel function.
sigma double The value for sigma.
return System
        public Bessel(int order, double sigma)
        {
            this.order = order;
            this.sigma = sigma;
        }