Interface NormalDist.DerivativeEvaluator

Enclosing class:
NormalDist

public static interface NormalDist.DerivativeEvaluator
Interface to evaluate a one dimensional function at point x and to obtain its derivative at such point.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    evaluate(double x)
    Evaluates function at point x.
    double
    Evaluates derivative of a function at point x.
  • Method Details

    • evaluate

      double evaluate(double x)
      Evaluates function at point x.
      Parameters:
      x - point x where derivative is evaluated.
      Returns:
      evaluation of function at point x.
    • evaluateDerivative

      double evaluateDerivative(double x)
      Evaluates derivative of a function at point x.
      Parameters:
      x - point x where derivative is evaluated.
      Returns:
      derivative of one dimensional function at point x.