RNStream Ifc
Represents a random number stream with stream control
Author
rossetti
Inheritors
Properties
Functions
Randomly selects from the array using the supplied cdf, NO checking of arrays
Randomly permutes the supplied array using the stream. The array is changed.
Randomly permutes the supplied array
Randomly permutes the supplied array, the array is changed.
Randomly permutes the supplied List using the stream. The list is changed.
Randomly select an element from the array
Randomly selects from the array using the supplied cdf
Randomly generates sampleSize points from a unit Latin hyper-cube for the specified dimension using the supplied stream. A Latin hypercube sample generates n points in [0,1)^d, placing exactly one point in [j/n, (j+1)/n) for j = 0,1,2, ..,n-1.
Randomly generates sampleSize points from a unit Latin hyper-cube for the specified intervals using the supplied stream. A Latin hypercube sample generates n points in hyper-cube defined by the intervals.
Pearson Type 6
Returns a randomly generated sign -1, 0, +1 all equally likely.
The array x is changed, such that the first sampleSize elements contain the generated sample. That is, x0, x1, ... , xsampleSize-1 is the randomly sampled values without replacement
The array x is changed, such that the first sampleSize elements contain the generated sample. That is, x0, x1, ... , xsampleSize-1 is the random sample without replacement
The array x is changed, such that the first sampleSize elements contain the sample. That is, x0, x1, ... , xsampleSize-1 is the random sample without replacement
The List x is changed, such that the first sampleSize elements contain the sampled values. That is, x.get(0), x.get(1), ... , x.get(sampleSize-1) is the random sample without replacement