Draw samples from the triangular distribution.
The triangular distribution is a continuous probability distribution with lower limit left, peak at mode, and upper limit right. Unlike the other distributions, these parameters directly define the shape of the pdf.
Parameters : | left : scalar
mode : scalar
right : scalar
size : int or tuple of ints, optional
|
---|---|
Returns : | samples : ndarray or scalar
|
Notes
The probability density function for the Triangular distribution is
The triangular distribution is often used in ill-defined problems where the underlying distribution is not known, but some knowledge of the limits and mode exists. Often it is used in simulations.
References
[R234] | Wikipedia, “Triangular distribution” http://en.wikipedia.org/wiki/Triangular_distribution |
Examples