Class resample.RVRandomNormalProcess
All Packages Class Hierarchy This Package Previous Next Index
Class resample.RVRandomNormalProcess
java.lang.Object
|
+----resample.RVRandomProcess
|
+----resample.RVRandomNormalProcess
- public class RVRandomNormalProcess
- extends RVRandomProcess
-
RVRandomNormalProcess()
-
constructor ():
creates a new Random-object of normal distributed values
with mean 0.0 and standard deviation 1.0
-
RVRandomNormalProcess(double, double)
-
constructor (mean,standardDeviation):
creates a new Random-object of normal distributed values
with mean [mean] and standard deviation [standardDeviation]
-
nextNumber()
-
nextNumber:
gets the next pseudorandom, Gaussian ("normally") distributed double value
from this random number generator's sequence.
RVRandomNormalProcess
public RVRandomNormalProcess()
- constructor ():
creates a new Random-object of normal distributed values
with mean 0.0 and standard deviation 1.0
RVRandomNormalProcess
public RVRandomNormalProcess(double mean,
double standardDeviation)
- constructor (mean,standardDeviation):
creates a new Random-object of normal distributed values
with mean [mean] and standard deviation [standardDeviation]
nextNumber
public double nextNumber()
- nextNumber:
gets the next pseudorandom, Gaussian ("normally") distributed double value
from this random number generator's sequence.
Mean and standardDeviation were given in the constructor
reference: Knuth: ACP section 3.4.1 page 113
- Overrides:
- nextNumber in class RVRandomProcess
All Packages Class Hierarchy This Package Previous Next Index