Class GammaLowerIncomplete
java.lang.Object
dev.nm.analysis.function.rn2r1.AbstractRealScalarFunction
dev.nm.analysis.function.rn2r1.AbstractBivariateRealFunction
dev.nm.analysis.function.special.gamma.GammaLowerIncomplete
- All Implemented Interfaces:
Function<Vector,
,Double> BivariateRealFunction
,RealScalarFunction
The Lower Incomplete Gamma function is defined as:
\[
\gamma(s,x) = \int_0^x t^{s-1}\,e^{-t}\,{\rm d}t = P(s,x)\Gamma(s)
\]
P(s,x) is the Regularized Incomplete Gamma P function.
The integrand has the same form as the Gamma function, but the upper limit of the integration is
a variable.
The lower limit is fixed.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface dev.nm.analysis.function.Function
Function.EvaluationException
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class dev.nm.analysis.function.rn2r1.AbstractBivariateRealFunction
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
-
GammaLowerIncomplete
public GammaLowerIncomplete()
-
-
Method Details
-
evaluate
public double evaluate(double s, double x) Evaluate \(\gamma(s,x)\).- Parameters:
s
- s > 0x
- x ≥ 0- Returns:
- \(\gamma(s,x)\)
-