Click or drag to resize

DoubleRandomLogNormalDistribution Class

Class DoubleRandomLogNormalDistribution generates random numbers from a lognormal distribution.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleRandomLogNormalDistribution

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

The DoubleRandomLogNormalDistribution type exposes the following members.

Constructors
 NameDescription
Public methodDoubleRandomLogNormalDistribution Constructs a random number generator for a lognormal distribution using default mean of 0.0, sigma of 1.0, displacement of 0.0, and scale of 1.0.
Public methodDoubleRandomLogNormalDistribution(Double, Double, Double, Double) Constructs a random number generator for a lognormal distribution using the specified distribution parameters.
Public methodDoubleRandomLogNormalDistribution(Double, Double, Double, Double, DoubleRandomLogNormalDistributionGenerationMethod) Constructs a random number generator for a lognormal distribution using the specified distribution parameters.
Top
Properties
 NameDescription
Public propertyDisplacement Gets the displacement.
Public propertyMean Gets the average of the subject normal distribution.
Public propertyMethod Gets the generation method.
Public propertyScale Gets the scale.
Public propertySigma Gets the standard deviation of the subject normal 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