Class DBetaRegularized

All Implemented Interfaces:
Function<Vector,Double>, RealScalarFunction, UnivariateRealFunction

public class DBetaRegularized extends AbstractUnivariateRealFunction
This is the first order derivative function of the Regularized Incomplete Beta function, BetaRegularized, w.r.t the upper limit, x. \[ {\partial \over \partial x} \mathrm{B_x}(p, q) = \frac{x^{p-1}(1-x)^{q-1}}{\mathrm{B_x}(p, q)} \]
See Also:
  • Constructor Details

    • DBetaRegularized

      public DBetaRegularized(double p, double q)
      Construct the derivative function of the Regularized Incomplete Beta function, BetaRegularized.
      Parameters:
      p - the shape parameter
      q - the shape parameter
  • Method Details

    • evaluate

      public double evaluate(double x)
      Evaluate \({\partial \over \partial x} \mathrm{B_x}(p, q)\).
      Parameters:
      x - \(0 \le x \le 1\)
      Returns:
      \({\partial \over \partial x} \mathrm{B_x}(p, q)\)