Click or drag to resize

RandomDeviceRandomNumberGenerator Property

Gets or sets the basic random generator for this instance.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public RandomNumberGenerator RandomNumberGenerator { get; set; }

Property Value

Type: RandomNumberGenerator
The basic random generator of this instance.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalue is null.
Remarks

The RandomNumberGenerator is a RandomNumberGenerator able to sample random data from a continuous uniform distribution defined on the interval [0, 1). Subclasses define transformation routines of such data in order to stream samples from the specific distributions they represent. If not set, it defaults to the single instruction, multiple data Mersenne Twister 19937 generator having seed equal to 0.

See Also