Click or drag to resize

NMathFunctionsBinomialLn Method

Note: This API is now obsolete.

Returns the natural log of the binomial coefficient ("n choose m"), the number of ways of picking m unordered outcomes from n possibilities.

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

Parameters

n  Int32
The total number of possibilities.
m  Int32
The number of desired outcomes.

Return Value

Double
The natural log of the binomial coefficient.
See Also