double bicoln(int n, int k);
Returns the natural logarithm of the binomial coefficient nCk.
Parameters:
n | Population size. |
---|---|
k | Sample size. |
Returns:
log(nCk)
Errors:
NUMERICS_ERROR
is raised if k < 0 or k > n
Header:
#include "mathx.h"