public static double LogFactorial(
int n
)
Public Shared Function LogFactorial (
n As Integer
) As Double
public:
static double LogFactorial(
int n
)
static member LogFactorial :
n : int -> float
This function provides accurate values of ln(n!) even for values of n which would cause n! to overflow.
ArgumentOutOfRangeException | n is negative. |