Python Programming/numpy
From Wikibooks, open books for an open world
![]() |
This page or section is an undeveloped draft or outline. You can help to develop the work, or you can ask for assistance in the project room. |
Numpy is a numeric library for python. It can be installed through the debian package python-numpy
Histogram[edit]
import numpy mydata = [numpy.random.normal(0,1) for i in range(10000) ] h, n = numpy.histogram( mydata , 100, (-5,5) )