NumPy
- Provides
- An array object of arbitrary homogeneous items
- Fast mathematical operations over arrays
- Linear Algebra, Fourier Transforms, Random Number Generation
Documentation is available in the docstrings and at
http://www.scipy.org
| core: | Defines a multi-dimensional array and useful procedures for Numerical
computation. |
| lib: | Basic functions used by several sub-packages and useful to have in the
main name-space. |
| random: | Core Random Tools |
| linalg: | Core Linear Algebra Tools |
| fft: | Core FFT routines |
| testing: | Numpy testing tools |
These packages require explicit import
| f2py: | Fortran to Python Interface Generator. |
| distutils: | Enhancements to distutils with support for Fortran compilers support and more. |
| core: | use numpy.* not numpy.core.* |
| lib: | use numpy.* not numpy.lib.* |
| testing: | NumpyTest |
| test: | Run numpy unittests |
| pkgload: | Load numpy packages |
| show_config: | Show numpy build configuration |
| dual: | Overwrite certain functions with high-performance Scipy tools |
| matlib: | Make everything matrices. |
| __version__: | Numpy version string |