Hello,
Is there a way to call the random number generator with a STL's vector instead of a pointer to an array?
It seems kind of wasteful to copy every time from an array into the vector.
Cheers,
Elad
1 解答
Hello Elad,
I wonder if this approach (with caution) would work for you
vector v(1000);
...
vdRngGaussian( VSL_RNG_METHOD_GAUSSIAN_ICDF, stream, v.size(), (double*)&v[0], 0.0, 1.0 );
Thanks,
Andrey
I wonder if this approach (with caution) would work for you
vector
...
vdRngGaussian( VSL_RNG_METHOD_GAUSSIAN_ICDF, stream, v.size(), (double*)&v[0], 0.0, 1.0 );
Thanks,
Andrey
链接已复制
2 回复数
Hello Elad,
I wonder if this approach (with caution) would work for you
vector v(1000);
...
vdRngGaussian( VSL_RNG_METHOD_GAUSSIAN_ICDF, stream, v.size(), (double*)&v[0], 0.0, 1.0 );
Thanks,
Andrey
I wonder if this approach (with caution) would work for you
vector
...
vdRngGaussian( VSL_RNG_METHOD_GAUSSIAN_ICDF, stream, v.size(), (double*)&v[0], 0.0, 1.0 );
Thanks,
Andrey