| IndependentRandomStreamsNext(IRandomNumberDistributionDouble) 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 DoubleMatrix Next(
IRandomNumberDistribution<double>[] distributions
)
Public Function Next (
distributions As IRandomNumberDistribution(Of Double)()
) As DoubleMatrix
public:
DoubleMatrix^ Next(
array<IRandomNumberDistribution<double>^>^ distributions
)
member Next :
distributions : IRandomNumberDistribution<float>[] -> DoubleMatrix
Parameters
- distributions IRandomNumberDistributionDouble
- The desired probability distributions.
Return Value
DoubleMatrixA
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