Generates the next pseudorandom number.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public override double NextDouble()
Public Overrides Function NextDouble As Double
public:
virtual double NextDouble() override
abstract NextDouble : unit -> float
override NextDouble : unit -> float
Return Value
Type:
Double
A
double which specifies the next pseudorandom value from this
random number generator's sequence.
Remarks
If the multiplier is set then the multiplicative congruential
method is used. Otherwise, super.Next(bits) is used. Where
bits is the number of random bits required.
See Also