Home
last modified time | relevance | path

Searched refs:normalvariate (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Drandom.py400 def normalvariate(self, mu, sigma): member in Random
433 return _exp(self.normalvariate(mu, sigma))
726 _test_generator(N, normalvariate, (0.0, 1.0))
759 normalvariate = _inst.normalvariate variable
/external/python/cpython2/Lib/
Drandom.py388 def normalvariate(self, mu, sigma): member in Random
421 return _exp(self.normalvariate(mu, sigma))
865 _test_generator(N, normalvariate, (0.0, 1.0))
897 normalvariate = _inst.normalvariate variable
/external/python/cpython2/Lib/test/
Dtest_random.py524 g.random = x[:].pop; g.normalvariate(0.0, 1.0)
578 (g.normalvariate, (10.0, 0.0), 10.0),
/external/python/cpython2/Doc/library/
Drandom.rst252 deviation. This is slightly faster than the :func:`normalvariate` function
264 .. function:: normalvariate(mu, sigma)
/external/python/cpython3/Lib/test/
Dtest_random.py755 g.random = x[:].pop; g.normalvariate(0.0, 1.0)
809 (g.normalvariate, (10.0, 0.0), 10.0),
/external/python/cpython3/Doc/library/
Drandom.rst274 deviation. This is slightly faster than the :func:`normalvariate` function
286 .. function:: normalvariate(mu, sigma)
/external/python/cpython2/Doc/faq/
Dlibrary.rst859 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.
/external/python/cpython3/Doc/faq/
Dlibrary.rst831 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.