package
0.0.0-20181125101827-41a0da705a5b
Repository: https://github.com/gonum/stat.git
Documentation: pkg.go.dev

# Functions

Binomial returns the binomial coefficient of (n,k), also commonly referred to as "n choose k".
Combinations generates all of the combinations of k elements from a set of size n.
GeneralizedBinomial returns the generalized binomial coefficient of (n, k), defined as Γ(n+1) / (Γ(k+1) Γ(n-k+1)) where Γ is the Gamma function.
LogGeneralizedBinomial returns the log of the generalized binomial coefficient.
NewCombinationGenerator returns a CombinationGenerator for generating the combinations of k elements from a set of size n.

# Structs

CombinationGenerator generates combinations iteratively.