randomstate.prng.mt19937.
triangular
(left, mode, right, size=None)¶Draw samples from the triangular distribution over the
interval [left, right]
.
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: |
|
---|---|
Returns: | out – Drawn samples from the parameterized triangular distribution. |
Return type: | 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
[1] | Wikipedia, “Triangular distribution” http://en.wikipedia.org/wiki/Triangular_distribution |
Examples
Draw values from the distribution and plot the histogram:
>>> import matplotlib.pyplot as plt
>>> h = plt.hist(np.random.triangular(-3, 0, 8, 100000), bins=200,
... normed=True)
>>> plt.show()