NumPy
Foundational numerical-computing library for Python.
NumPy provides the N-dimensional array (ndarray) and the operations
that act on it — vectorised arithmetic, linear algebra, FFTs,
random-number generation, and a broadcasting model that lets Python
code achieve C-like speed without explicit loops. It is the foundation
of virtually every scientific and machine-learning library in Python.
NumPy ships in the default install of most scientific Linux distributions and is a transitive dependency of pandas, SciPy, scikit-learn, PyTorch, and TensorFlow.
Install
pip install numpy
Authors
- Travis Oliphant (original author)
- NumFOCUS / NumPy steering council
