Click or drag to resize

UtilBinomialCoefficient Method

The binomial coefficient (n choose k) is the number of ways of picking k unordered outcomes from n possibilities.

Namespace:  Demo3D.Common
Assembly:  Demo3D.Common (in Demo3D.Common.dll) Version: 15.0.2.11458
Syntax
C#
public static long BinomialCoefficient(
	int n,
	int k
)

Parameters

n
Type: SystemInt32
The number of possibilities.
k
Type: SystemInt32
The number of unordered outcomes.

Return Value

Type: Int64

[Missing <returns> documentation for "M:Demo3D.Common.Util.BinomialCoefficient(System.Int32,System.Int32)"]

See Also