This function is similar to nchoosek of Statistics Toolbox but it is
much faster and makes a more efficient use of memory.
Returns the scalar $v!/k!(v-k)!$ if $v$ and $k$ are non-negative integers.
This is the number of combinations of $v$ things taken $k$ at a time. In
this case it makes use of function bc.
Produces a matrix with $n!/k!(n-k)!$ rows and $k$ columns if $v$ is a vector
of length $n. Each row contains a combination of k elements taken
without repetitions among n. In this case function combsFS is used.