Function hypergeometricCDF

P(X <= x), where X is random variable. Uses either direct summation, normal or binomial approximation depending on parameters.

double hypergeometricCDF (
  long x,
  long n1,
  long n2,
  long n
);