Class StdRandom
java.lang.Object
gaiasky.util.math.StdRandom
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanReturns a random boolean from a Bernoulli distribution with success probability 1/2.static booleanbernoulli(double p) Returns a random boolean from a Bernoulli distribution with success probability p.static doublebeta(double alpha, double beta) Returns a random real number from a beta distribution with parameters α and β.static doublecauchy()Returns a random real number from the Cauchy distribution.static intdiscrete(double[] probabilities) Returns a random integer from the specified discrete distribution.static intdiscrete(int[] frequencies) Returns a random integer from the specified discrete distribution.static doubleexp(double lambda) Returns a random real number from an exponential distribution with rate λ.static doublegaussian()Returns a random real number from a standard Gaussian distribution.static doublegaussian(double mu, double sigma) Returns a random real number from a Gaussian distribution with mean μ and standard deviation σ.static intgeometric(double p) Returns a random integer from a geometric distribution with success probability p.static longgetSeed()Returns the seed of the pseudorandom number generator.static doublepareto()Returns a random real number from the standard Pareto distribution.static doublepareto(double alpha) Returns a random real number from a Pareto distribution with shape parameter α.static intpoisson(double lambda) Returns a random integer from a Poisson distribution with mean λ.static doublerandom()Deprecated.static voidsetSeed(long s) Sets the seed of the pseudorandom number generator.static voidshuffle(double[] a) Rearranges the elements of the specified array in uniformly random order.static voidshuffle(double[] a, int lo, int hi) Rearranges the elements of the specified subarray in uniformly random order.static voidshuffle(int[] a) Rearranges the elements of the specified array in uniformly random order.static voidshuffle(int[] a, int lo, int hi) Rearranges the elements of the specified subarray in uniformly random order.static voidRearranges the elements of the specified array in uniformly random order.static voidRearranges the elements of the specified subarray in uniformly random order.static doubleuniform()Returns a random real number uniformly in [0, 1).static doubleuniform(double a, double b) Returns a random real number uniformly in [a, b).static intuniform(int n) Returns a random integer uniformly in [0, n).static intuniform(int a, int b) Returns a random integer uniformly in [a, b).
-
Method Details
-
getSeed
public static long getSeed()Returns the seed of the pseudorandom number generator.- Returns:
- the seed
-
setSeed
public static void setSeed(long s) Sets the seed of the pseudorandom number generator. This method enables you to produce the same sequence of "random" number for each execution of the program. Ordinarily, you should call this method at most once per program.- Parameters:
s- the seed
-
uniform
public static double uniform()Returns a random real number uniformly in [0, 1).- Returns:
- a random real number uniformly in [0, 1)
-
uniform
public static int uniform(int n) Returns a random integer uniformly in [0, n).- Parameters:
n- number of possible integers- Returns:
- a random integer uniformly between 0 (inclusive) and
N(exclusive) - Throws:
IllegalArgumentException- ifn ≤ 0
-
random
Deprecated.Replaced byuniform().Returns a random real number uniformly in [0, 1).- Returns:
- a random real number uniformly in [0, 1)
-
uniform
public static int uniform(int a, int b) Returns a random integer uniformly in [a, b).- Parameters:
a- the left endpointb- the right endpoint- Returns:
- a random integer uniformly in [a, b)
- Throws:
IllegalArgumentException- ifb ≤ aIllegalArgumentException- ifb - a ≥ Integer.MAX_VALUE
-
uniform
public static double uniform(double a, double b) Returns a random real number uniformly in [a, b).- Parameters:
a- the left endpointb- the right endpoint- Returns:
- a random real number uniformly in [a, b)
- Throws:
IllegalArgumentException- unlessa < b
-
bernoulli
public static boolean bernoulli(double p) Returns a random boolean from a Bernoulli distribution with success probability p.- Parameters:
p- the probability of returningtrue- Returns:
truewith probabilitypandfalsewith probabilityp- Throws:
IllegalArgumentException- unlessp ≥ 0.0andp ≤ 1.0
-
bernoulli
public static boolean bernoulli()Returns a random boolean from a Bernoulli distribution with success probability 1/2.- Returns:
truewith probability 1/2 andfalsewith probability 1/2
-
gaussian
public static double gaussian()Returns a random real number from a standard Gaussian distribution.- Returns:
- a random real number from a standard Gaussian distribution (mean 0 and standard deviation 1).
-
gaussian
public static double gaussian(double mu, double sigma) Returns a random real number from a Gaussian distribution with mean μ and standard deviation σ.- Parameters:
mu- the meansigma- the standard deviation- Returns:
- a real number distributed according to the Gaussian distribution
with mean
muand standard deviationsigma
-
geometric
public static int geometric(double p) Returns a random integer from a geometric distribution with success probability p.- Parameters:
p- the parameter of the geometric distribution- Returns:
- a random integer from a geometric distribution with success
probability
p; orInteger.MAX_VALUEifpis (nearly) equal to1.0. - Throws:
IllegalArgumentException- unlessp ≥ 0.0andp ≤ 1.0
-
poisson
public static int poisson(double lambda) Returns a random integer from a Poisson distribution with mean λ.- Parameters:
lambda- the mean of the Poisson distribution- Returns:
- a random integer from a Poisson distribution with mean
lambda - Throws:
IllegalArgumentException- unlesslambda > 0.0and not infinite
-
pareto
public static double pareto()Returns a random real number from the standard Pareto distribution.- Returns:
- a random real number from the standard Pareto distribution
-
pareto
public static double pareto(double alpha) Returns a random real number from a Pareto distribution with shape parameter α.- Parameters:
alpha- shape parameter- Returns:
- a random real number from a Pareto distribution with shape
parameter
alpha - Throws:
IllegalArgumentException- unlessalpha > 0.0
-
cauchy
public static double cauchy()Returns a random real number from the Cauchy distribution.- Returns:
- a random real number from the Cauchy distribution.
-
discrete
public static int discrete(double[] probabilities) Returns a random integer from the specified discrete distribution.- Parameters:
probabilities- the probability of occurrence of each integer- Returns:
- a random integer from a discrete distribution:
iwith probabilityprobabilities[i] - Throws:
NullPointerException- ifprobabilitiesisnullIllegalArgumentException- if sum of array entries is not (very nearly) equal to1.0IllegalArgumentException- unlessprobabilities[i] ≥ 0.0for each indexi
-
discrete
public static int discrete(int[] frequencies) Returns a random integer from the specified discrete distribution.- Parameters:
frequencies- the frequency of occurrence of each integer- Returns:
- a random integer from a discrete distribution:
iwith probability proportional tofrequencies[i] - Throws:
NullPointerException- iffrequenciesisnullIllegalArgumentException- if all array entries are0IllegalArgumentException- iffrequencies[i]is negative for any indexiIllegalArgumentException- if sum of frequencies exceedsInteger.MAX_VALUE(231 - 1)
-
exp
public static double exp(double lambda) Returns a random real number from an exponential distribution with rate λ.- Parameters:
lambda- the rate of the exponential distribution- Returns:
- a random real number from an exponential distribution with
rate
lambda - Throws:
IllegalArgumentException- unlesslambda > 0.0
-
beta
public static double beta(double alpha, double beta) Returns a random real number from a beta distribution with parameters α and β. The result is normalized in [-1,1]- Parameters:
alpha- the shape parameter αbeta- the shape parameter β- Returns:
- a random real number from a beta distribution normalized in [-1,1]
- Throws:
IllegalArgumentException- unlessalpha, beta > 0.0
-
shuffle
Rearranges the elements of the specified array in uniformly random order.- Parameters:
a- the array to shuffle- Throws:
NullPointerException- ifaisnull
-
shuffle
public static void shuffle(double[] a) Rearranges the elements of the specified array in uniformly random order.- Parameters:
a- the array to shuffle- Throws:
NullPointerException- ifaisnull
-
shuffle
public static void shuffle(int[] a) Rearranges the elements of the specified array in uniformly random order.- Parameters:
a- the array to shuffle- Throws:
NullPointerException- ifaisnull
-
shuffle
Rearranges the elements of the specified subarray in uniformly random order.- Parameters:
a- the array to shufflelo- the left endpoint (inclusive)hi- the right endpoint (inclusive)- Throws:
NullPointerException- ifaisnullIndexOutOfBoundsException- unless(0 ≤ lo) && (lo ≤ hi) && (hi < a.length)
-
shuffle
public static void shuffle(double[] a, int lo, int hi) Rearranges the elements of the specified subarray in uniformly random order.- Parameters:
a- the array to shufflelo- the left endpoint (inclusive)hi- the right endpoint (inclusive)- Throws:
NullPointerException- ifaisnullIndexOutOfBoundsException- unless(0 ≤ lo) && (lo ≤ hi) && (hi < a.length)
-
shuffle
public static void shuffle(int[] a, int lo, int hi) Rearranges the elements of the specified subarray in uniformly random order.- Parameters:
a- the array to shufflelo- the left endpoint (inclusive)hi- the right endpoint (inclusive)- Throws:
NullPointerException- ifaisnullIndexOutOfBoundsException- unless(0 ≤ lo) && (lo ≤ hi) && (hi < a.length)
-
uniform().