mirror of
https://github.com/python/cpython.git
synced 2025-11-13 07:26:31 +00:00
Document that random.gauss is normal distribution (GH-24935)
This commit is contained in:
parent
2a36b09ce7
commit
389212c5db
1 changed files with 3 additions and 3 deletions
|
|
@ -326,9 +326,9 @@ be found in any statistics text.
|
||||||
|
|
||||||
.. function:: gauss(mu, sigma)
|
.. function:: gauss(mu, sigma)
|
||||||
|
|
||||||
Gaussian distribution. *mu* is the mean, and *sigma* is the standard
|
Normal distribution, also called the Gaussian distribution. *mu* is the mean,
|
||||||
deviation. This is slightly faster than the :func:`normalvariate` function
|
and *sigma* is the standard deviation. This is slightly faster than
|
||||||
defined below.
|
the :func:`normalvariate` function defined below.
|
||||||
|
|
||||||
Multithreading note: When two threads call this function
|
Multithreading note: When two threads call this function
|
||||||
simultaneously, it is possible that they will receive the
|
simultaneously, it is possible that they will receive the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue