Special.LogFactorial Method

Returns the natural logarithm of the factorial of a positive integer.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static double LogFactorial(
	int n
)

Parameters

n  Int32
A positive integer.

Return Value

Double
The natural logarithm of the factorial of the integer.

Remarks

The factorial of a number nis the product of all integers from one up to and including n.

Exceptions

ArgumentOutOfRangeExceptionn is less than zero.

See Also