Click or drag to resize

QuasiRandomNumberGeneratorFill(FloatMatrix) 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 [0,1]^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
)

Parameters

M  FloatMatrix
Matrix to fill. M must have Dimension rows.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the number of rows in the input matrix is not equal to Dimension.
See Also