| IndependentRandomStreamsNext(IRandomNumberDistributionDouble) 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 DoubleMatrix Next(
IRandomNumberDistribution<double> distribution
)
Public Function Next (
distribution As IRandomNumberDistribution(Of Double)
) As DoubleMatrix
public:
DoubleMatrix^ Next(
IRandomNumberDistribution<double>^ distribution
)
member Next :
distribution : IRandomNumberDistribution<float> -> DoubleMatrix
Parameters
- distribution IRandomNumberDistributionDouble
- The desired probability distribution.
Return Value
DoubleMatrixA
StreamLength x NumberOfStreams matrix where each
column contains an independent random number stream from the given
distribution.
See Also