Click or drag to resize

NMathFunctionsFactorialLn Method

Note: This API is now obsolete.

Returns the natural log factorial of n, ln( n! ).

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Instead use SpecialFunctions.FactorialLn().")]
public static double FactorialLn(
	int n
)

Parameters

n  Int32
The number of objects.

Return Value

Double
ln( n! )
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if n is not positive.
See Also