Click or drag to resize

QuasiRandomNumberGeneratorNext(IRandomNumberDistributionSingle, Int32) Method

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.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatMatrix Next(
	IRandomNumberDistribution<float> distribution,
	int numSamples
)

Parameters

distribution  IRandomNumberDistributionSingle
The desired distribution for the quasirandom points.
numSamples  Int32
The desired number of points.

Return Value

FloatMatrix
A Dimension x numSamples matrix whose colums are quasirandom points following the given distribution.
See Also