Returns the number of ways to partition a set into subsets of the
specified size.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double MultinomialCoefficient(
params int[] size
)
Public Shared Function MultinomialCoefficient (
ParamArray size As Integer()
) As Double
public:
static double MultinomialCoefficient(
... array<int>^ size
)
static member MultinomialCoefficient :
size : int[] -> float
Parameters
- size
- Type: SystemInt32
A list or array of integers specifying the size of the subsets.
Return Value
Type:
DoubleThe requested multinomial coefficient.
The multinomial coefficient gives the total number of ways
to partition a set of n numbers into sets of nk
elements, where n is the sum of the nk.
Reference