Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax
| C# | Visual Basic | Visual C++ | F# |
public sealed class NormalDistribution : Distribution, IParameterizedDistribution
Public NotInheritable Class NormalDistribution _ Inherits Distribution _ Implements IParameterizedDistribution
public ref class NormalDistribution sealed : public Distribution, IParameterizedDistribution
[<SealedAttribute>] type NormalDistribution = class inherit Distribution interface IParameterizedDistribution end
Members
| All Members | Constructors | Properties | Methods |
| Member | Description | |
|---|---|---|
| NormalDistribution()()()() |
Initializes a new standard normal distribution.
| |
| NormalDistribution(Double, Double) |
Initializes a new normal distribution with the given mean and standard deviation.
| |
| Equals(Object) | (Inherited from Object.) | |
| ExpectationValue(Func<(Of <<'(Double, Double>)>>)) |
Computes the expectation value of the given function.
(Inherited from Distribution.) | |
| Finalize()()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| FitToSample(Sample) |
Computes the normal distribution that best fits the given sample.
| |
| GetHashCode()()()() | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetRandomValue(Random) |
Returns a random value.
(Overrides Distribution..::..GetRandomValue(Random).) | |
| GetType()()()() | Gets the Type of the current instance. (Inherited from Object.) | |
| InverseLeftProbability(Double) |
Returns the point at which the cumulative distribution function attains a given value.
(Overrides Distribution..::..InverseLeftProbability(Double).) | |
| InverseRightProbability(Double) |
Returns the point at which the right probability function attains the given value.
(Inherited from Distribution.) | |
| LeftProbability(Double) |
Returns the cumulative probability to the left of (below) the given point.
(Overrides Distribution..::..LeftProbability(Double).) | |
| Mean |
Gets the mean of the distribution.
(Overrides Distribution..::..Mean.) | |
| Median |
Gets the median of the distribution.
(Overrides Distribution..::..Median.) | |
| MemberwiseClone()()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Moment(Int32) |
Returns the given moment of the distribution.
(Overrides Distribution..::..Moment(Int32).) | |
| MomentAboutMean(Int32) |
Returns the given moment of the distribution, about the mean.
(Overrides Distribution..::..MomentAboutMean(Int32).) | |
| ProbabilityDensity(Double) |
Returns the probability density at the given point.
(Overrides Distribution..::..ProbabilityDensity(Double).) | |
| RightProbability(Double) |
Return the cumulative probability to the right of (above) the given point.
(Overrides Distribution..::..RightProbability(Double).) | |
| Skewness |
Ges the skewness of the distribution.
(Overrides Distribution..::..Skewness.) | |
| StandardDeviation |
Gets the standard deviation of the distribution.
(Overrides Distribution..::..StandardDeviation.) | |
| Support |
Gets the interval over which the distribution is nonvanishing.
(Inherited from Distribution.) | |
| ToString()()()() | (Inherited from Object.) | |
| Variance |
Gets the variance of the distribution.
(Inherited from Distribution.) |
Remarks
A normal distribution is a bell-shaped curve centered at its mean and falling off symmetrically on each side. It is a two-parameter distribution determined by giving its mean and standard deviation, i.e. its center and width. Its range is the entire real number line, but the tails, i.e. points more than a few standard deviations from the means, fall off extremely rapidly.

A normal distribution with mean zero and standard deviation one is called a standard normal distribution. Any normal distribution can be converted to a standard normal distribution by reparameterzing the data in terms of "standard deviations from the mean", i.e. z = (x - μ) / σ.
Normal distribution appear in many contexts. In practical work, the normal distribution is often used as a crude model for the distribution of any continuous parameter that tends to cluster near its average, for example human height and weight. In more refined theoretical work, the normal distribution often emerges as a limiting distribution. For example, it can be shown that, if a large number of errors affect a measurement, then for nearly any underlying distribution of error terms, the distribution of total error tends to a normal distribution.
The normal distribution is sometimes called a Gaussian distribtuion, after the mathematician Friedrich Gauss.
Inheritance Hierarchy
Meta.Numerics.Statistics.Distributions..::..Distribution
Meta.Numerics.Statistics.Distributions..::..NormalDistribution