Python Programming/numpy
Tools
General
Sister projects
In other projects
Numpy is a numeric library for python.
It's provided with the main Linux distribution, however it can be installed through the Debian packagepython-numpy. On Windows, it can be downloaded onhttp://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:
python ez_setup.py install
.importnumpymydata=[numpy.random.normal(0,1)foriinrange(10000)]h,n=numpy.histogram(mydata,100,(-5,5))
![]() | This section is a stub. You can help Wikibooks byexpanding it. |