Special.LogCombinations Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.6

Overload List

LogCombinations(Double, Double)

Gets the natural logarithm of Combinations(Int32, Int32).
C#
public static double LogCombinations(
	double n,
	double k
)

Parameters

n  Double
The number of possibilities.
k  Double
The number of outcomes to pick.

Return Value

Double
Gets the natural logarithm of Combinations(Int32, Int32).

LogCombinations(Int32, Int32)

Gets the natural logarithm of Combinations(Int32, Int32).
C#
public static double LogCombinations(
	int n,
	int k
)

Parameters

n  Int32
The number of possibilities.
k  Int32
The number of outcomes to pick.

Return Value

Double
Gets the natural logarithm of Combinations(Int32, Int32).

See Also