
NumPy
Nearly every scientist working in Python draws on the power of NumPy. NumPy brings the computational power of languages like C and Fortran to Python, a language much easier to learn …
NumPy documentation — NumPy v2.4 Manual
The reference guide contains a detailed description of the functions, modules, and objects included in NumPy. The reference describes how the methods work and which parameters can be used.
NumPy: the absolute basics for beginners — NumPy v2.4 Manual
The NumPy library contains multidimensional array data structures, such as the homogeneous, N-dimensional ndarray, and a large library of functions that operate efficiently on these data structures.
NumPy - Installing NumPy
The only prerequisite for installing NumPy is Python itself. If you don’t have Python yet and want the simplest way to get started, we recommend you use the Anaconda Distribution - it includes Python, …
numpy.where — NumPy v2.4 Manual
numpy.where # numpy.where(condition, [x, y, ]/) # Return elements chosen from x or y depending on condition.
Indexing on ndarrays — NumPy v2.4 Manual
The native NumPy indexing type is intp and may differ from the default integer array type. intp is the smallest data type sufficient to safely index any array; for advanced indexing it may be faster than …
numpy.polyfit — NumPy v2.4 Manual
Since version 1.4, the new polynomial API defined in numpy.polynomial is preferred. A summary of the differences can be found in the transition guide. Fit a polynomial p[0] * x**deg + ... + p[deg] of degree …
NumPy fundamentals — NumPy v2.4 Manual
These documents clarify concepts, design decisions, and technical constraints in NumPy. This is a great place to understand the fundamental NumPy ideas and philosophy.
numpy.linalg.norm — NumPy v2.4 Manual
Order of the norm (see table under Notes for what values are supported for matrices and vectors respectively). inf means numpy’s inf object. The default is None.
Array creation — NumPy v2.4 Manual
The following lists the ones with known Python libraries to read them and return NumPy arrays (there may be others for which it is possible to read and convert to NumPy arrays so check the last section …