Derivative() public méthode

Calculates function derivative.
The method calculates function derivative at point x.
public Derivative ( double x ) : double
x double Function input value.
Résultat double
        public static void Test()
        {
            FractionalSigmoidFunction frac = new FractionalSigmoidFunction();
            SigmoidFunction norm = new SigmoidFunction();

            double left = frac.Derivative(0.5, 1);
            double right = norm.Derivative(0.5);

            Debugger.Break();
        }
Exemple #2
0
        public static void Test()
        {
            FractionalSigmoidFunction frac = new FractionalSigmoidFunction();
            SigmoidFunction           norm = new SigmoidFunction();

            double left  = frac.Derivative(0.5, 1);
            double right = norm.Derivative(0.5);

            Debugger.Break();
        }