Generates a double precision random number.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public override double NextDouble() |
| Visual Basic (Declaration) |
|---|
Public Overrides Function NextDouble As Double |
| Visual C++ |
|---|
public: virtual double NextDouble() override |
Return Value
A double precision random deviate from a lognormal 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.