AdvancedIntegerMathBinomialCoefficients Method
Enumerates the binomial coefficients of a given order.
Namespace: Meta.Numerics.FunctionsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static IEnumerable<double> BinomialCoefficients(
int n
)
Public Shared Function BinomialCoefficients (
n As Integer
) As IEnumerable(Of Double)
public:
static IEnumerable<double>^ BinomialCoefficients(
int n
)
static member BinomialCoefficients :
n : int -> IEnumerable<float>
- n Int32
- The upper argument, which must be non-negative.
IEnumerableDoubleAn enumeration of the binomial coefficients in the nth row of Pascal's triangle.