NormalRandom Class

Generates values from the standard normal distribution.

Definition

Namespace: Austra.Library.Stats
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public sealed class NormalRandom
Inheritance
Object    NormalRandom

Constructors

NormalRandomCreates a generator using a randomized seed.
NormalRandom(Int32)Creates a generator using a seed.
NormalRandom(Random) Creates a generator from a uniform distribution generator.
NormalRandom(Double, Double)Creates a generator using a randomized seed.
NormalRandom(Int32, Double, Double)Creates a generator using a seed.
NormalRandom(Random, Double, Double) Creates a generator from a uniform distribution generator.

Properties

SharedA shared instance of the generator using a randomized seed.
StandardDeviationGets the standard deviation of the distribution.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
NextDouble Returns a random value according to the standard normal distribution.
NextDoubles Returns a couple of random values according to the standard normal distribution.
NextDoubles(Double*) Returns a couple of random values according to the standard normal distribution.
NextDoubles(Double) Returns a couple of random values according to the standard normal distribution.
ShiftCreates a new generator with a shifted mean.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also