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.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public static double BinomialLn( int n, int m ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function BinomialLn ( _ n As Integer, _ m As Integer _ ) As Double |
| Visual C++ |
|---|
public: static double BinomialLn( int n, int m ) |
Parameters
- n
- Type: System..::.Int32
The total number of possibilities.
- m
- Type: System..::.Int32
The number of desired outcomes.