bicoln

double bicoln(int n, int k);

Returns the natural logarithm of the binomial coefficient nCk.

Parameters:
nPopulation size.
kSample size.

Returns:
log(nCk)

Errors:
NUMERICS_ERROR is raised if k < 0 or k > n

Header:
#include "mathx.h"