Accord.Statistics.Distributions.DensityKernels.UniformKernel.Derivative C# (CSharp) Метод

Derivative() публичный Метод

Computes the derivative of the kernel profile function.
public Derivative ( double x ) : double
x double The point estimate x.
Результат double
        public double Derivative(double x)
        {
#if DEBUG
            if (x < 0)
                throw new Exception();
#endif

            return 0;
        }
    }