| IndependentRandomStreamsNext(IRandomNumberDistributionSingle) Method |
Creates a matrix whose columns contain independent random number streams
following the given probablility distibution.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public FloatMatrix Next(
IRandomNumberDistribution<float> distribution
)
Public Function Next (
distribution As IRandomNumberDistribution(Of Single)
) As FloatMatrix
public:
FloatMatrix^ Next(
IRandomNumberDistribution<float>^ distribution
)
member Next :
distribution : IRandomNumberDistribution<float32> -> FloatMatrix
Parameters
- distribution IRandomNumberDistributionSingle
- The desired probability distribution.
Return Value
FloatMatrixA
StreamLength x NumberOfStreams matrix where each
column contains an independent random number stream from the given
distribution.
See Also