Click or drag to resize

QuasiRandomNumberGeneratorFill(DoubleMatrix, Double, Double) Method

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.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Fill(
	DoubleMatrix M,
	double a,
	double b
)

Parameters

M  DoubleMatrix
The matrix to fill.
a  Double
The generated points will be uniformly distributed in the hypercube [a,b]^n, where n is equal to Dimension.
b  Double
The generated points will be uniformly distributed in the hypercube [a,b]^n, where n is equal to Dimension.
See Also