diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-05 12:23:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-05 12:23:19 (GMT) |
commit | f8a52d38ad784b34a60720cb148180d6eb6de373 (patch) | |
tree | 70072929ba8529af42d32aec3da0d0df559c25cf /Doc | |
parent | 02771c174c836bd3836e4c17f90cc510d58cf2f7 (diff) | |
download | cpython-f8a52d38ad784b34a60720cb148180d6eb6de373.zip cpython-f8a52d38ad784b34a60720cb148180d6eb6de373.tar.gz cpython-f8a52d38ad784b34a60720cb148180d6eb6de373.tar.bz2 |
Removed deprecated functions
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/librandom.tex | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/lib/librandom.tex b/Doc/lib/librandom.tex index df05203..5483ff2 100644 --- a/Doc/lib/librandom.tex +++ b/Doc/lib/librandom.tex @@ -168,18 +168,6 @@ these equations can be found in any statistics text. Returned values range between 0 and 1. \end{funcdesc} -\begin{funcdesc}{cunifvariate}{mean, arc} - Circular uniform distribution. \var{mean} is the mean angle, and - \var{arc} is the range of the distribution, centered around the mean - angle. Both values must be expressed in radians, and can range - between 0 and \emph{pi}. Returned values range between - \code{\var{mean} - \var{arc}/2} and \code{\var{mean} + - \var{arc}/2} and are normalized to between 0 and \emph{pi}. - - \deprecated{2.3}{Instead, use \code{(\var{mean} + \var{arc} * - (random.random() - 0.5)) \% math.pi}.} -\end{funcdesc} - \begin{funcdesc}{expovariate}{lambd} Exponential distribution. \var{lambd} is 1.0 divided by the desired mean. (The parameter would be called ``lambda'', but that is a |