| IndependentRandomStreamsNext(IRandomNumberDistributionSingle) Method |
Creates a matrix whose columns contain independent random number streams
where each stream follows a specified probablility distibution.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public FloatMatrix Next(
IRandomNumberDistribution<float>[] distributions
)
Public Function Next (
distributions As IRandomNumberDistribution(Of Single)()
) As FloatMatrix
public:
FloatMatrix^ Next(
array<IRandomNumberDistribution<float>^>^ distributions
)
member Next :
distributions : IRandomNumberDistribution<float32>[] -> FloatMatrix
Parameters
- distributions IRandomNumberDistributionSingle
- The desired probability distributions.
Return Value
FloatMatrixA
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