AdvancedIntegerMathLogDoubleFactorial Method |
Computes the natural logarithm of the double factorial of the given number.
Namespace:
Meta.Numerics.Functions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static double LogDoubleFactorial(
int n
)
Public Shared Function LogDoubleFactorial (
n As Integer
) As Double
public:
static double LogDoubleFactorial(
int n
)
static member LogDoubleFactorial :
n : int -> float
Parameters
- n
- Type: SystemInt32
The argument.
Return Value
Type:
DoubleThe value of ln(n!!).
Exceptions Remarks This return value of this method will not overflow even for values of n for which n!!
would overflow a Double.
See Also