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

Constructor Index

 o RVRandomNormalProcess()
constructor (): creates a new Random-object of normal distributed values with mean 0.0 and standard deviation 1.0
 o RVRandomNormalProcess(double, double)
constructor (mean,standardDeviation): creates a new Random-object of normal distributed values with mean [mean] and standard deviation [standardDeviation]

Method Index

 o nextNumber()
nextNumber: gets the next pseudorandom, Gaussian ("normally") distributed double value from this random number generator's sequence.

Constructors

 o RVRandomNormalProcess
  public RVRandomNormalProcess()
constructor (): creates a new Random-object of normal distributed values with mean 0.0 and standard deviation 1.0
 o 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]

Methods

 o 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