Class TriangularDistribution represents the triangular probability distribution.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
[SerializableAttribute]
public class TriangularDistribution : ProbabilityDistribution, 
	IRandomVariableMoments
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class TriangularDistribution _
	Inherits ProbabilityDistribution _
	Implements IRandomVariableMoments
Visual C++
[SerializableAttribute]
public ref class TriangularDistribution : public ProbabilityDistribution, 
	IRandomVariableMoments

Remarks

The triangular distribution is defined by three parameters, a lower limit a, an upper limit b, and number c, between a and b, called the mode. the probability density function (PDF) has the shape of a triangle in the X/Y plane with verices (a, 0), (b, 0), and (c, y), where y is chosen so that the area of the triangle is 1.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.ProbabilityDistribution
    CenterSpace.NMath.Stats..::.TriangularDistribution

See Also