RandomNumberGenerator Class

Represents a pseudo-random number generator.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public class RandomNumberGenerator
Inheritance
Object    RandomNumberGenerator

Methods

CreateMT19937 Creates a Mersenne Twister 19937 generator having the specified seed.
CreateNextMT2203 Creates the next pseudo random generator in the sequence of Mersenne Twister 2203 generators having the specified seed.
CreateSFMT19937 Creates a single instruction, multiple data Mersenne Twister 19937 generator having the specified seed.
DefaultUniform Draws a sample point from a Uniform distribution defined on the interval having 0 and 1 as bounds.
DefaultUniform(Int32, Double, Int32) Draws a sample from a Uniform distribution defined on the interval having 0 and 1 as bounds, and returns it in a destination array.
DiscreteUniform(Int32, Int32) Draws a sample point from a discrete Uniform distribution defined on the interval having the specified bounds.
DiscreteUniform(Int32, Int32, Int32, Int32, Int32) Draws a sample from a discrete Uniform distribution defined on the specified interval and returns it in a destination array.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Gaussian(Double, Double) Draws a sample point from a Gaussian distribution having the specified parameters.
Gaussian(Int32, Double, Int32, Double, Double) Draws a sample point from a Gaussian distribution having the specified parameters.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)
Uniform(Double, Double) Draws a sample point from a Uniform distribution defined on the interval having the specified bounds.
Uniform(Int32, Double, Int32, Double, Double) Draws a sample from a Uniform distribution defined on the specified interval and returns it in a destination array.

See Also