| 1 | initial version |
You might also prefer to use numpy.random. You can get help at:
http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.lognormal.html#numpy.random.lognormal
| 2 | added examples |
You might also prefer to use numpy.random. You can get help at:
http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.lognormal.html#numpy.random.lognormal
For example, try:
import numpy.random as rdm
rdm.normal(4,1,10)
rdm.lognormal(4,2,20)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.