Click or drag to resize

QuasiRandomNumberGeneratorNext(IRandomNumberDistributionDouble, Int32) Method

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.

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

Parameters

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

Return Value

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