Jump to content

Python Programming/numpy

From Wikibooks, open books for an open world


Numpy is a numeric library for python.

Installation

[edit | edit source]

It's provided with the main Linux distribution, however it can be installed through the Debian package python-numpy. On Windows, it can be downloaded on http://sourceforge.net/projects/numpy/files/.

Then, once the .zip unpacked, the installation is done by entering into the console:

python setup.py install 

In case of error:

Histogram

[edit | edit source]
importnumpymydata=[numpy.random.normal(0,1)foriinrange(10000)]h,n=numpy.histogram(mydata,100,(-5,5))

See also

[edit | edit source]
close