Generates an array of random numbers from a logistic distribution, seeds and generator number passed explicitly
int lgsrnd( double * v, uint n, double a, double b )
Return NE_NOERROR(0) on success, otherwise error
EX1
//This example is to generate pseudo-random numbers from a logistic distribution int lgsrnd_ex1() { int n = 10; vector v( n ); double a = 1.0; double b = 2.0; int nRet = lgsrnd( v, n, a, b); if(0 != nRet) return 0; for(int i=0;i<n;i++) printf("v[%d]: %f\n",i, v[i]); return 1; }
binornd
origin.h