Click or drag to resize

QuasiRandomNumberGeneratorFillT(IRandomNumberDistributionT, T) Method

Fills an array with quasirandom numbers from the specified distribution. The quasirandom numbers, which are tuples of length Dimension are layed out linearly in the array r. If Dimension = n, then the first n-dimensional quasirandom point occupies r[0], r[1],...,r[n-1], the second occupies r[n], r[n+1],...,r[2n-1], and so on.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Fill<T>(
	IRandomNumberDistribution<T> distribution,
	T[] r
)

Parameters

distribution  IRandomNumberDistributionT
The desired probability distribution for the generated quasirandom numbers.
r  T
The array to be filled. Note that the k quasirandom points are desired, the size of r should be Dimension*k

Type Parameters

T
Data type of the numbers.
Remarks
This function is most useful when Dimension = 1. For Dimension greater than 1, the routines that place the quasirandom points in matrices is more convenient.
See Also