|
SSJ
3.3.1
Stochastic Simulation in Java
|
This class permits one to create generators for empirical and quasi-empirical univariate distributions using UNURAN via its string interface. More...
Public Member Functions | |
| UnuranEmpirical (RandomStream s, String genStr) | |
Constructs a new empirical univariate generator using the specification string genStr and stream s. | |
| UnuranEmpirical (RandomStream s, RandomStream aux, String genStr) | |
Constructs a new empirical univariate generator using the specification string genStr, with main stream s and auxiliary stream aux. | |
| UnuranEmpirical (RandomStream s, PiecewiseLinearEmpiricalDist dist, String genStr) | |
| Same as UnuranEmpirical(s, s, dist, genStr). | |
| UnuranEmpirical (RandomStream s, RandomStream aux, PiecewiseLinearEmpiricalDist dist, String genStr) | |
Same as UnuranEmpirical(s, aux, genStr), but reading the observations from the empirical distribution dist. More... | |
| double | nextDouble () |
| void | nextArrayOfDouble (double[] v, int start, int n) |
| Distribution | getDistribution () |
| RandomStream | getStream () |
| RandomStream | getAuxStream () |
| Returns the auxiliary random number stream. | |
Public Member Functions inherited from RandomVariateGen | |
| RandomVariateGen (RandomStream s, Distribution dist) | |
Creates a new random variate generator from the distribution dist, using stream s. More... | |
| double | nextDouble () |
| Generates a random number from the continuous distribution contained in this object. More... | |
| void | nextArrayOfDouble (double[] v, int start, int n) |
Generates n random numbers from the continuous distribution contained in this object. More... | |
| double [] | nextArrayOfDouble (int n) |
Generates n random numbers from the continuous distribution contained in this object, and returns them in a new array of size n. More... | |
| RandomStream | getStream () |
| Returns the umontreal.ssj.rng.RandomStream used by this generator. More... | |
| void | setStream (RandomStream stream) |
Sets the umontreal.ssj.rng.RandomStream used by this generator to stream. | |
| Distribution | getDistribution () |
| Returns the umontreal.ssj.probdist.Distribution used by this generator. More... | |
| String | toString () |
Returns a String containing information about the current generator. | |
Protected Member Functions | |
| void | finalize () |
Additional Inherited Members | |
Protected Attributes inherited from RandomVariateGen | |
| RandomStream | stream |
| Distribution | dist |
This class permits one to create generators for empirical and quasi-empirical univariate distributions using UNURAN via its string interface.
The empirical data can be read from a file, from an array, or simply encoded into the generator specification string. When reading from a file or an array, the generator specification string must not contain a distribution specification string.
| UnuranEmpirical | ( | RandomStream | s, |
| RandomStream | aux, | ||
| PiecewiseLinearEmpiricalDist | dist, | ||
| String | genStr | ||
| ) |
Same as UnuranEmpirical(s, aux, genStr), but reading the observations from the empirical distribution dist.
The genStr argument must not contain a distribution part because the distribution will be generated from the input stream reader.
1.8.14