Allows the creation of an array of random numbers with an explicitly specified type. Useful, for example, when single-precision floats are all you need.
// Create an array of 10 million floats distributed Normal(0, 1). float[] normals = randArray!(float, rNormal)(10, 0, 1);
See Implementation
Allows the creation of an array of random numbers with an explicitly specified type. Useful, for example, when single-precision floats are all you need.