Click or drag to resize

QuasiRandomNumberGeneratorFill(FloatMatrix, Single, Single) Method

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.

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

Parameters

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