| RandGenGeometricNextDouble Method |
Generates a double precision random number.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
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
DoubleA double precision random deviate from a Geometric distribution.
Remarks This is the abstract method from the base class. It is equivalent to
calling the method Next(). Calling NextDouble() will incur the
extra overhead of a virtual function call.
See Also