RandomDeviceRandomNumberGenerator Property

Gets or sets the basic random generator for this instance.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public RandomNumberGenerator RandomNumberGenerator { get; set; }

Property Value

RandomNumberGenerator
The basic random generator of this instance.

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.

Exceptions

ArgumentNullExceptionvalue is null.

See Also