in reply to Re: Fastest way to calculate hypergeometric distribution probabilities (i.e. BIG factorials)?
in thread Fastest way to calculate hypergeometric distribution probabilities (i.e. BIG factorials)?
my $hypercdf = 0; for (my $iref=$i; $iref < min($N,$n); $iref++) { $hypercdf += hypergeom($n,$m,$N,$iref); } print $hypercdf;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Fastest way to calculate hypergeometric distribution probabilities (i.e. BIG factorials)?
by Alokito (Novice) on Jun 06, 2011 at 11:30 UTC |