TriangularDistribution Constructor |
Initializes a new triangular distribution.
Namespace:
Meta.Numerics.Statistics.Distributions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public TriangularDistribution(
double a,
double b,
double c
)
Public Sub New (
a As Double,
b As Double,
c As Double
)
public:
TriangularDistribution(
double a,
double b,
double c
)
new :
a : float *
b : float *
c : float -> TriangularDistribution
Parameters
- a
- Type: SystemDouble
One inflection point of the distribution. - b
- Type: SystemDouble
A second inflection point of the distribution. - c
- Type: SystemDouble
A third inflection point of the distribution.
See Also