Generates an array of random integers from a hypergeometric distribution, seeds and generator number passed explicitly
int hygernd( long * v, uint n, int ns, int np, int m )
Return NE_NOERROR(0) on success, otherwise error
EX1
//This example is to generate pseudo-random numbers from a hypergeometric distribution int hygernd_ex1() { int n = 10; long v[10]; int m = 900; int np = 1000; int ns = 500; int nRet = hygernd( v, n, ns, np, m); if(0 != nRet) return 0; for(int i=0;i<n;i++) printf("v[%d]: %d\n",i, v[i]); return 1; }
binornd
origin.h