Added "docs" for Pareto and Weibull distributions.

This commit is contained in:
Guido van Rossum 1997-12-30 17:38:05 +00:00
parent f5910e42d1
commit 4f80b65aa6
2 changed files with 16 additions and 0 deletions

View file

@ -71,6 +71,14 @@ distribution reduces to a uniform random angle over the range 0 to
\code{2*pi}.
\end{funcdesc}
\begin{funcdesc}{paretovariate}{alpha}
Pareto distribution. \var{alpha} is the shape parameter.
\end{funcdesc}
\begin{funcdesc}{weibullvariate}{alpha, beta}
Weibull distribution. \var{alpha} is the scale parameter, and
\var{beta} is the shape parameter.
\end{funcdesc}
\begin{seealso}
\seemodule{whrandom}{the standard Python random number generator}