FoldedNormalDistribution Constructor

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7

Overload List

FoldedNormalDistribution() Constructs a new FoldedNormalDistribution with mean equal to zero and standard deviation equal to 1.
FoldedNormalDistribution(Double, Double) Constructs a new FoldedNormalDistribution with specified parameters.

FoldedNormalDistribution

Constructs a new FoldedNormalDistribution with mean equal to zero and standard deviation equal to 1.
C#
public FoldedNormalDistribution()

Remarks

This constructor creates a folded standard normal distribution.

FoldedNormalDistribution(Double, Double)

Constructs a new FoldedNormalDistribution with specified parameters.
C#
public FoldedNormalDistribution(
	double mu,
	double sigma
)

Parameters

mu  Double
The mean of the original normal distribution.
sigma  Double
The standard deviation of the original normal distribution.

Exceptions

ArgumentOutOfRangeException

sigma is less than or equal to zero.

See Also