AForge.Neuro.ThresholdFunction.Derivative2 C# (CSharp) Method

Derivative2() public method

Calculates function derivative (not supported).

The method is not supported, because it is not possible to calculate derivative of the function.

public Derivative2 ( double y ) : double
y double Input value.
return double
        public double Derivative2( double y )
        {
            return 0;
        }