Uses of Interface
org.apache.commons.math.random.NormalizedRandomGenerator

Packages that use NormalizedRandomGenerator
org.apache.commons.math.random Random number and random data generators. 
 

Uses of NormalizedRandomGenerator in org.apache.commons.math.random
 

Classes in org.apache.commons.math.random that implement NormalizedRandomGenerator
 class GaussianRandomGenerator
          This class is a gaussian normalized random generator for scalars.
 class UniformRandomGenerator
          This class implements a normalized uniform random generator.
 

Fields in org.apache.commons.math.random declared as NormalizedRandomGenerator
private  NormalizedRandomGenerator UncorrelatedRandomVectorGenerator.generator
          Underlying scalar generator.
private  NormalizedRandomGenerator CorrelatedRandomVectorGenerator.generator
          Underlying generator.
 

Methods in org.apache.commons.math.random that return NormalizedRandomGenerator
 NormalizedRandomGenerator CorrelatedRandomVectorGenerator.getGenerator()
          Get the underlying normalized components generator.
 

Constructors in org.apache.commons.math.random with parameters of type NormalizedRandomGenerator
CorrelatedRandomVectorGenerator(double[] mean, RealMatrix covariance, double small, NormalizedRandomGenerator generator)
          Simple constructor.
CorrelatedRandomVectorGenerator(RealMatrix covariance, double small, NormalizedRandomGenerator generator)
          Simple constructor.
UncorrelatedRandomVectorGenerator(double[] mean, double[] standardDeviation, NormalizedRandomGenerator generator)
          Simple constructor.
UncorrelatedRandomVectorGenerator(int dimension, NormalizedRandomGenerator generator)
          Simple constructor.