Cmn {forensim} | R Documentation |
The number of all possible combinations of m elements among n with repetitions.
Cmn(m, n)
m |
the m elements to combine among n |
n |
the n elements from which to combine m elements with repetitions |
There are (n+m-1)!/(m!(n-1)!) ways to combine m elements among n with repetitions.
Cmn was implemented as an auxiliary function for the dataL
function which computes the
likelihood of the observed alleles in a mixed DNA stain conditional on the number of contributors.
Hinda Haned <haned@biomserv.univ-lyon1.fr>
comb
for all possible combinations of m elements among n with repetitions
Cmn(2,3) comb(2,3)