Click or drag to resize

NormalDistribution Constructor (Double, Double)

Initializes a new normal distribution with the given mean and standard deviation.

Namespace:  Meta.Numerics.Statistics.Distributions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public NormalDistribution(
	double mu,
	double sigma
)

Parameters

mu
Type: SystemDouble
The mean.
sigma
Type: SystemDouble
The standard deviation, which must be positive.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionsigma is less than or equal to zero.
See Also