Searched refs:normalvariate (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | random.py | 570 def normalvariate(self, mu, sigma): member in Random 637 return _exp(self.normalvariate(mu, sigma)) 868 normalvariate = _inst.normalvariate variable 905 _test_generator(N, normalvariate, (0.0, 1.0))
|
/third_party/python/Doc/library/ |
D | random.rst | 331 the :func:`normalvariate` function defined below. 338 slower, but thread-safe :func:`normalvariate` function instead. 349 .. function:: normalvariate(mu, sigma)
|
/third_party/python/Lib/test/ |
D | test_random.py | 1007 g.random = x[:].pop; g.normalvariate(0.0, 1.0) 1061 (g.normalvariate, (10.0, 0.0), 10.0),
|
/third_party/python/Doc/faq/ |
D | library.rst | 829 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.
|