Click or drag to resize

UniformDistribution Class

Class UniformDistribution represents the Uniform probability distribution.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreProbabilityDistribution
    CenterSpace.NMath.CoreUniformDistribution

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

The UniformDistribution type exposes the following members.

Constructors
 NameDescription
Public methodUniformDistribution Default constructor for class UnifromDistribution. Constructs a UniformDistribution instance with lower limit equal zero and upper limit equal one.
Public methodUniformDistribution(Double, Double) Constructs an UniformDistribution instance with the given upper and lower limits.
Top
Properties
 NameDescription
Public propertyKurtosis Gets the kurtosis, a measure of the degree of peakednesss of the distribution.
Public propertyLowerLimit Gets the lower limit for the distribution.
Public propertyMean Gets the mean of the distribution.
Public propertySkewness Gets the skewness, a measure of the degree of asymmetry of this distribution.
Public propertyUpperLimit Gets the upper limit for the distribution.
Public propertyVariance Gets the variance of the distribution.
Remarks
The variance of the distribution is the standard deviation squared.
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 UniformDistribution.
(Overrides ProbabilityDistributionClone)
Public methodInverseCDF Returns the inverse cumulative density function evaluated a 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 methodSetLimits Sets the lower and upper limits for this distribution.
Public methodToString Returns a formatted string representation of this distribution.
(Overrides ProbabilityDistributionToString)
Top
See Also