Class resample.RVRandomProcess
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class resample.RVRandomProcess

java.lang.Object
   |
   +----resample.RVRandomProcess

public class RVRandomProcess
extends Object
RVRandomProcess this class enables the user to define special random processes as subclasses which can be used to initialize the whole resample vector or a part of it. Predefined subclasses are: RVRandomUniformIntProcess (creates uniform integer distribution) RVRandomUniformDoubleProcess (creates uniform double distribution) RVRandomNormalProcess (creates normal (Gaussian) distribution)

Constructor Index

 o RVRandomProcess()
 o RVRandomProcess(int, int)

Method Index

 o nextNumber()
Returns the next random number.

Constructors

 o RVRandomProcess
  public RVRandomProcess(int min,
                         int max)
 o RVRandomProcess
  public RVRandomProcess()

Methods

 o nextNumber
  public abstract double nextNumber()
Returns the next random number. It has to be implemented by any subclass. The return-type has to be double even if a subclass calculates only integer values as the result is used for a resample-vector-element

All Packages  Class Hierarchy  This Package  Previous  Next  Index