|  | RandGenBinomialNextDouble Method | 
            Generates a double precision random number. 
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic 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 binomial distribution.
 Remarks
RemarksThis 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
See Also