Searched refs:lognormvariate (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | random.py | 425 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/ |
D | random.py | 413 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/ |
D | test_random.py | 526 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),
|
D | test_multiprocessing.py | 1989 size = int(random.lognormvariate(0, 1) * 1000)
|
/external/python/cpython3/Lib/test/ |
D | test_random.py | 757 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.py | 3421 size = int(random.lognormvariate(0, 1) * 1000)
|
/external/python/cpython2/Doc/library/ |
D | random.rst | 256 .. function:: lognormvariate(mu, sigma)
|
/external/python/cpython3/Doc/library/ |
D | random.rst | 278 .. function:: lognormvariate(mu, sigma)
|