Click or drag to resize

IndependentRandomStreamsNext(IRandomNumberDistributionDouble) Method

Creates a matrix whose columns contain independent random number streams where each stream follows a specified probablility distibution.

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

Parameters

distributions  IRandomNumberDistributionDouble
The desired probability distributions.

Return Value

DoubleMatrix
A StreamLength x NumberOfStreams matrix where each column contains an independent random number stream. Column i of the returned matrix follows the distribution distributions[i].
See Also