GammaRelatedLnBeta(Double, Double, Boolean) Method |
LnBeta(a,b) calculates the double precision natural logarithm of
the complete beta function for double precision arguments a and b.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static double LnBeta(
double a,
double b,
bool bDebug
)
Parameters
- a Double
- The first parameter.
- b Double
- The second parameter.
- bDebug Boolean
- If true, an exception is thrown if serious errors occur. If false, NaN is returned on errors.
Return Value
DoubleThe logarithm of the complete beta function.
RemarksThis is a translation from the Fortran version of DLBETA(A,B), SLATEC, FNLIB,
CATEGORY C7B, REVISION 900727, originally written by Fullerton W.,(LANL)
to C++.
Calls d9lgmc(x), LogRel(x), LnGamma(x), Gamma(x)
See Also