Python Programming/numpy
From Wikibooks, open books for an open world
Numpy is a numeric library for python. It can be installed through the debian package python-numpy
[edit] Histogram
import numpy
mydata = [numpy.random.normal(0,1) for i in range(10000) ]
h, n = numpy.histogram( mydata , 100, (-5,5) )
[edit] See also