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

TaylorGaussian() public method

Constructs a new TaylorGaussian kernel with the given sigma.
public TaylorGaussian ( Accord.Statistics.Kernels.Gaussian gaussian, int degree = 1024 ) : System
gaussian Accord.Statistics.Kernels.Gaussian The original Gaussian kernel to be approximated.
degree int The Gaussian approximation degree. Default is 1024.
return System
        public TaylorGaussian(Gaussian gaussian, int degree = 1024)
        {
            this.gaussian = gaussian;
            this.coefficients = new double[degree];
            this.linear = new Linear();
            this.createCoefficients(degree);
        }

Same methods

TaylorGaussian::TaylorGaussian ( double sigma, int degree = 1024 ) : System