Click or drag to resize

IndependentRandomStreamsFill(IRandomNumberDistributionDouble, DoubleMatrix) Method

Fills the columns of a given matrix with independent random streams following the given probablility distributions.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Fill(
	IRandomNumberDistribution<double>[] distributions,
	DoubleMatrix R
)

Parameters

distributions  IRandomNumberDistributionDouble
Array of probablility distributions. On exit column i of the input matrix R will contain a random stream following distribution distributions[i]. Array distributions must have length greater than NumberOfStreams.
R  DoubleMatrix
StreamLength x NumberOfStreams matrix to be filled. On exit column i of R will contain a random stream following distribution distributions[i].
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the number of rows in R is not equal to StreamLength, or if the number of columns in R is not equal to NumberOfStreams, or if the length of distributions is less than NumberOfStreams.
Remarks
The input matrix R must have its data in contiguous storage. This means that the matrix R can not be obtained by slicing another matrix. This means that the property R.IsCompactStride must be true or, equivalently, R.RowStride == 1 amp;amp; R.ColStride == R.Rows.
See Also