Package | Description |
---|---|
com.github.gwtd3.api.core |
Modifier and Type | Method and Description |
---|---|
static Random |
Random.irwinHall(int count)
Returns a function for generating random number with a Irwin-Hall distribution.
|
static Random |
Random.logNormal()
Returns a function for generating random number with a log-normal
distribution, with a mean of 0 and a deviation of 1.
|
static Random |
Random.logNormal(double mean)
Returns a function for generating random number with a log-normal
distribution, with the given mean, and a deviation of 1.
|
static Random |
Random.logNormal(double mean,
double deviation)
Returns a function for generating random number with a log-normal
distribution, with the given mean, and the given deviation.
|
static Random |
Random.normal()
Returns a function for generating random number with a normal (Gaussian)
distribution, with a mean of 0 and a deviation of 1.
|
static Random |
Random.normal(double mean)
Returns a function for generating random number with a normal (Gaussian)
distribution, with the given mean, and a deviation of 1.
|
static Random |
Random.normal(double mean,
double deviation)
Returns a function for generating random number with a normal (Gaussian)
distribution, with the given mean, and the given deviation.
|
Copyright © 2015 gwt-d3. All rights reserved.