Home
last modified time | relevance | path

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

/third_party/python/Lib/
Drandom.py570 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/
Drandom.rst331 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/
Dtest_random.py1007 g.random = x[:].pop; g.normalvariate(0.0, 1.0)
1061 (g.normalvariate, (10.0, 0.0), 10.0),
/third_party/python/Doc/faq/
Dlibrary.rst829 * ``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution.