21 lines
438 B
Plaintext
21 lines
438 B
Plaintext
using [java] java.util::Random
|
|
|
|
class Main
|
|
{
|
|
Random generator := Random()
|
|
|
|
Float randomNormal ()
|
|
{
|
|
return generator.nextGaussian
|
|
}
|
|
|
|
public static Void main ()
|
|
{
|
|
rnd := Main() // create an instance of Main class, which holds the generator
|
|
mean := 1.0f
|
|
sd := 0.5f
|
|
Float[] values := [,] // this is the collection to fill with random numbers
|
|
1000.times { values.add (rnd.randomNormal * sd + mean) }
|
|
}
|
|
}
|