Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Drandom.py425 def lognormvariate(self, mu, sigma): member in Random
727 _test_generator(N, lognormvariate, (0.0, 1.0))
760 lognormvariate = _inst.lognormvariate variable
/external/python/cpython2/Lib/
Drandom.py413 def lognormvariate(self, mu, sigma): member in Random
866 _test_generator(N, lognormvariate, (0.0, 1.0))
898 lognormvariate = _inst.lognormvariate variable
/external/python/cpython2/Lib/test/
Dtest_random.py526 g.random = x[:].pop; g.lognormvariate(0.0, 1.0)
576 (g.lognormvariate, (0.0, 0.0), 1.0),
577 (g.lognormvariate, (-float('inf'), 0.0), 0.0),
Dtest_multiprocessing.py1989 size = int(random.lognormvariate(0, 1) * 1000)
/external/python/cpython3/Lib/test/
Dtest_random.py757 g.random = x[:].pop; g.lognormvariate(0.0, 1.0)
807 (g.lognormvariate, (0.0, 0.0), 1.0),
808 (g.lognormvariate, (-float('inf'), 0.0), 0.0),
D_test_multiprocessing.py3421 size = int(random.lognormvariate(0, 1) * 1000)
/external/python/cpython2/Doc/library/
Drandom.rst256 .. function:: lognormvariate(mu, sigma)
/external/python/cpython3/Doc/library/
Drandom.rst278 .. function:: lognormvariate(mu, sigma)