Searched refs:normalvariate (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | random.py | 400 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/ |
D | random.py | 388 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/ |
D | test_random.py | 524 g.random = x[:].pop; g.normalvariate(0.0, 1.0) 578 (g.normalvariate, (10.0, 0.0), 10.0),
|
/external/python/cpython2/Doc/library/ |
D | random.rst | 252 deviation. This is slightly faster than the :func:`normalvariate` function 264 .. function:: normalvariate(mu, sigma)
|
/external/python/cpython3/Lib/test/ |
D | test_random.py | 755 g.random = x[:].pop; g.normalvariate(0.0, 1.0) 809 (g.normalvariate, (10.0, 0.0), 10.0),
|
/external/python/cpython3/Doc/library/ |
D | random.rst | 274 deviation. This is slightly faster than the :func:`normalvariate` function 286 .. function:: normalvariate(mu, sigma)
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 859 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.
|
/external/python/cpython3/Doc/faq/ |
D | library.rst | 831 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.
|