Click or drag to resize

NormalDistribution Class

Class NormalDistribution represents the normal (Gaussian) probability distribution with a specifed mean and variance.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreProbabilityDistribution
    CenterSpace.NMath.CoreNormalDistribution

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class NormalDistribution : ProbabilityDistribution, 
	IRandomVariableMoments

The NormalDistribution type exposes the following members.

Constructors
 NameDescription
Public methodNormalDistribution Default constructor. Constructs a NormalDistribution with mean 0 and variance 1.
Public methodNormalDistribution(Double, Double) Constructs a NormalDistribution instance with the given mean and variance.
Top
Properties
 NameDescription
Public propertyKurtosis Gets the kurtosis, a measure of the degree of peakednesss of the density.
Public propertyMean Gets and sets the mean of the density.
Public propertySkewness Gets the skewness, a measure of the degree of asymmetry of this density.
Public propertyVariance Gets and sets the variance of the density.
Top
Methods
 NameDescription
Public methodCDF Returns the cumulative density function evaluated at a given value.
(Overrides ProbabilityDistributionCDF(Double))
Public methodClone Creates a deep copy of this PoissonDistribution.
(Overrides ProbabilityDistributionClone)
Public methodInverseCDF Returns the inverse cumulative density function evaluated at the given value.
(Overrides ProbabilityDistributionInverseCDF(Double))
Protected methodInverseCdfUsingBracket Uses a bracketing method to evaluate the inverse of cumulative distribution functions.
(Inherited from ProbabilityDistribution)
Protected methodInverseDiscreteCdfUsingBracket Uses a bracketing method to evaluate the inverse of cumulative distribution functions for discrete distributions.
(Inherited from ProbabilityDistribution)
Public methodPDF Returns the probability density function evaluated at a given value.
(Overrides ProbabilityDistributionPDF(Double))
Public methodToString Returns a formatted string representation of this distribution.
(Overrides ProbabilityDistributionToString)
Top
See Also