Package com.imsl.stat
Interface RandomSequence
- All Known Implementing Classes:
FaureSequence
public interface RandomSequence
Interface implemented by generators of random or quasi-random
multidimensional sequences.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the dimension of the sequence.double[]Returns the next multidimensional point in the sequence.
-
Method Details
-
getDimension
int getDimension()Returns the dimension of the sequence. -
nextPoint
double[] nextPoint()Returns the next multidimensional point in the sequence.- Returns:
- a
doublearray of length dimension.
-