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
)
Public Sub New (
mu As Double,
sigma As Double
)
public:
NormalDistribution(
double mu,
double sigma
)
new :
mu : float *
sigma : float -> NormalDistribution
Parameters
- mu
- Type: SystemDouble
The mean. - sigma
- Type: SystemDouble
The standard deviation, which must be positive.
Exceptions See Also