Click or drag to resize

SobolQuasiRandomGenerator Methods

The SobolQuasiRandomGenerator type exposes the following members.

Methods
 NameDescription
Protected methodCheckDimensionAndDirectionNumbers Verifies that the number of dimensions is positive and that the number of rows in the direction numbers table is equal to the number of dimensions or one less than the number of dimensions.
(Overrides QuasiRandomNumberGeneratorCheckDimensionAndDirectionNumbers(Int32, Int32))
Protected methodCheckDimensionAndPolynomials Verifies that the dimension is positive and that the number of primitive polynomials is equal to the number of dimenisons or one less than the number of dimensions.
(Overrides QuasiRandomNumberGeneratorCheckDimensionAndPolynomials(Int32, BitArray))
Public methodClone Creates a deep copy of self.
(Overrides QuasiRandomNumberGeneratorClone)
Public methodFill(DoubleMatrix) Fills the given double precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow a uniform distribution in the hypercube [0,1]^n, where n is equal to Dimension.
(Inherited from QuasiRandomNumberGenerator)
Public methodFill(FloatMatrix) Fills the given single precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow a uniform distribution in the hypercube [0,1]^n, where n is equal to Dimension.
(Inherited from QuasiRandomNumberGenerator)
Public methodFill(IRandomNumberDistributionDouble, DoubleMatrix) Fills the given double precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow the given distribution.
(Inherited from QuasiRandomNumberGenerator)
Public methodFill(IRandomNumberDistributionSingle, FloatMatrix) Fills the given single precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow the given distribution.
(Inherited from QuasiRandomNumberGenerator)
Public methodFill(DoubleMatrix, Double, Double) Fills the given double precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow a uniform distribution in the hypercube [a,b]^n, where n is equal to Dimension.
(Inherited from QuasiRandomNumberGenerator)
Public methodFill(FloatMatrix, Single, Single) Fills the given single precision matrix with M.Cols quasirandom points. The points are the columns of the matrix, hence the number of rows in the given matrix must be equal to the Dimension. The quasirandom numbers will follow a uniform distribution in the hypercube [a,b]^n, where n is equal to Dimension.
(Inherited from QuasiRandomNumberGenerator)
Public methodFillT(IRandomNumberDistributionT, T) Fills an array with quasirandom numbers from the specified distribution. The quasirandom numbers, which are tuples of length Dimension are layed out linearly in the array r. If Dimension = n, then the first n-dimensional quasirandom point occupies r[0], r[1],...,r[n-1], the second occupies r[n], r[n+1],...,r[2n-1], and so on.
(Inherited from QuasiRandomNumberGenerator)
Public methodNext(IRandomNumberDistributionDouble, Int32) Creates a double precision matrix filled with quasirandom points which follow the given probability distribution. The columns of the matrix are the points, and hence the matrix will contain Dimension rows and numSamples columns.
(Inherited from QuasiRandomNumberGenerator)
Public methodNext(IRandomNumberDistributionSingle, Int32) Creates a single precision matrix filled with quasirandom points which follow the given probability distribution. The columns of the matrix are the points, and hence the matrix will contain Dimension rows and numSamples columns.
(Inherited from QuasiRandomNumberGenerator)
Public methodNextT(IRandomNumberDistributionT, Int32) Creates an array filled with quasirandom numbers from the specified distribution. The quasirandom numbers, which are tuples of length Dimension are layed out linearly in the array r. If Dimension = n, then the first n-dimensional quasirandom point occupies r[0], r[1],...,r[n-1], the second occupies r[n], r[n+1],...,r[2n-1], and so on.
(Inherited from QuasiRandomNumberGenerator)
Top
See Also