Click or drag to resize

IndependentRandomStreamsNext(IRandomNumberDistributionSingle) 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 FloatMatrix Next(
	IRandomNumberDistribution<float>[] distributions
)

Parameters

distributions  IRandomNumberDistributionSingle
The desired probability distributions.

Return Value

FloatMatrix
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