RandomNET Class

Random Class

Definition

Namespace: Metas.UncLib.Core.RandomGenerator
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
C#
public class RandomNET : MersenneTwister
Inheritance
Object    Random    MersenneTwister    RandomNET
Derived

Constructors

RandomNETInitializes a new instance of the RandomNET class

Methods

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)
FromSamples(Int32, Double) Random numbers from samples.
FromSamples(Int32, Double, UInt32) Random numbers from samples.
FromSamples(Int32, Double, UInt32) Random numbers from samples.
Gaussian(Int32, Double, Double) Normally distributed random numbers.
Gaussian(Int32, Double, Double, UInt32) Normally distributed random numbers.
Gaussian(Int32, Double, Double, UInt32) Normally distributed random numbers.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
Init(UInt32) Initializes the MersenneTwister object using the specified seed value.
(Inherited from MersenneTwister)
Init(UInt32) Initializes the MersenneTwister object using the specified seed value.
(Inherited from MersenneTwister)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Next Returns a nonnegative random number.
(Inherited from MersenneTwister)
Next(Int32) Returns a nonnegative random number less than the specified maximum.
(Inherited from MersenneTwister)
Next(Int32, Int32) Returns a random number within a specified range.
(Inherited from MersenneTwister)
NextBytes Fills the elements of a specified array of bytes with random numbers.
(Inherited from MersenneTwister)
NextDouble Returns a random number between 0.0 and 1.0.
(Inherited from MersenneTwister)
NextUInt Returns a nonnegative random number.
(Inherited from MersenneTwister)
NextUInt(UInt32) Returns a nonnegative random number less than the specified maximum.
(Inherited from MersenneTwister)
NextUInt(UInt32, UInt32) Returns a random number within a specified range.
(Inherited from MersenneTwister)
Rand Uniformly distributed random numbers.
Randn Normally distributed random numbers.
SampleReturns a random floating-point number between 0.0 and 1.0.
(Inherited from Random)
ToStringReturns a string that represents the current object.
(Inherited from Object)
Uniform(Int32, Double, Double) Uniformly distributed random numbers.
Uniform(Int32, Double, Double, UInt32) Uniformly distributed random numbers.
Uniform(Int32, Double, Double, UInt32) Uniformly distributed random numbers.

See Also