Click or drag to resize

DoubleRandomGaussianDistribution Class

Class DoubleRandomGaussianDistribution generates random numbers from a Gaussian distribution.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleRandomGaussianDistribution

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class DoubleRandomGaussianDistribution : IRandomNumberDistribution<double>, 
	ICloneable

The DoubleRandomGaussianDistribution type exposes the following members.

Constructors
 NameDescription
Public methodDoubleRandomGaussianDistribution Constructs a random number generator for a Gaussian distribution using a default mean of 0.0 and default standard deviation of 1.0.
Public methodDoubleRandomGaussianDistribution(Double, Double) Constructs a random number generator for a Gaussian distribution using the specified distribution parameters.
Public methodDoubleRandomGaussianDistribution(Double, Double, DoubleRandomGaussianDistributionGenerationMethod) Constructs a random number generator for a Gaussian distribution using the specified distribution parameters.
Top
Properties
 NameDescription
Public propertyMean Gets the mean of the distribution.
Public propertyMethod Gets the generation method.
Public propertySigma Gets the standard deviation of the distribution.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this random number generator.
Public methodFill(RandomNumberStream, DoubleVector, Int32, Int32) Uses the given random number stream to fill the given vector of doubles with random values.
Public methodFill(RandomNumberStream, Double, Int32, Int32) Uses the given random number stream to fill the given array of integers with random values.
Top
See Also