Class DBetaRegularized
java.lang.Object
dev.nm.analysis.function.rn2r1.AbstractRealScalarFunction
dev.nm.analysis.function.rn2r1.univariate.AbstractUnivariateRealFunction
dev.nm.analysis.differentiation.univariate.DBetaRegularized
- All Implemented Interfaces:
Function<Vector,
,Double> RealScalarFunction
,UnivariateRealFunction
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:
-
Nested Class Summary
Nested classes/interfaces inherited from interface dev.nm.analysis.function.Function
Function.EvaluationException
-
Constructor Summary
ConstructorsConstructorDescriptionDBetaRegularized
(double p, double q) Construct the derivative function of the Regularized Incomplete Beta function,BetaRegularized
. -
Method Summary
Modifier and TypeMethodDescriptiondouble
evaluate
(double x) Evaluate \({\partial \over \partial x} \mathrm{B_x}(p, q)\).Methods inherited from class dev.nm.analysis.function.rn2r1.univariate.AbstractUnivariateRealFunction
evaluate
Methods inherited from class dev.nm.analysis.function.rn2r1.AbstractRealScalarFunction
dimensionOfDomain, dimensionOfRange
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface dev.nm.analysis.function.Function
dimensionOfDomain, dimensionOfRange
-
Constructor Details
-
DBetaRegularized
public DBetaRegularized(double p, double q) Construct the derivative function of the Regularized Incomplete Beta function,BetaRegularized
.- Parameters:
p
- the shape parameterq
- 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)\)
-