NumPy is a python library used for working with arrays. NumPy stands for Numerical Python. It also has functions for working in domain of linear algebra, fourier transform, and matrices.
NumPy is the fundamental package needed for scientific computing with Python.
- Website: https://www.numpy.org
- Documentation: https://numpy.org/doc
- Source code: https://github.com/numpy/numpy
It provides:
- a powerful N-dimensional array object
- sophisticated (broadcasting) functions
- tools for integrating C/C++ and Fortran code
- useful linear algebra, Fourier transform, and random number capabilities
To install NumPy, first make sure that Python and Pip are installed on your system or virtual environment:
pip install numpy