Click or drag to resize

NormalRandom Class

Generates values from the standard normal distribution.
Inheritance Hierarchy
SystemObject
  Austra.Library.StatsNormalRandom

Namespace: Austra.Library.Stats
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.7.0+b25929339ea1019e260029cf0ebd18b3a0ce2443
Syntax
C#
public sealed class NormalRandom

The NormalRandom type exposes the following members.

Constructors
 NameDescription
Public methodNormalRandomCreates a generator using a randomized seed.
Public methodNormalRandom(Int32)Creates a generator using a seed.
Public methodNormalRandom(Random) Creates a generator from a uniform distribution generator.
Public methodNormalRandom(Double, Double)Creates a generator using a randomized seed.
Public methodNormalRandom(Int32, Double, Double)Creates a generator using a seed.
Public methodNormalRandom(Random, Double, Double) Creates a generator from a uniform distribution generator.
Top
Properties
 NameDescription
Public propertyStatic memberSharedA shared instance of the generator using a randomized seed.
Public propertyStandardDeviationGets the standard deviation of the distribution.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodNextDouble Returns a random value according to the standard normal distribution.
Public methodNextDoubles Returns a couple of random values according to the standard normal distribution.
Public methodNextDoubles(Double*) Returns a couple of random values according to the standard normal distribution.
Public methodNextDoubles(Double) Returns a couple of random values according to the standard normal distribution.
Public methodShiftCreates a new generator with a shifted mean.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also