Global web icon
numpy.org
https://numpy.org/doc/stable/
NumPy documentation — NumPy v2.3 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.
Global web icon
numpy.org
https://numpy.org/doc/stable/user/
NumPy user guide — NumPy v2.3 Manual
NumPy user guide # This guide is an overview and explains the important features; details are found in NumPy reference.
Global web icon
numpy.org
https://numpy.org/doc/1.21/
Overview — NumPy v1.21 Manual
Large parts of this manual originate from Travis E. Oliphant's book "Guide to NumPy" (which generously entered public domain in August 2008). The reference documentation for many of the functions are written by numerous contributors and developers of NumPy.
Global web icon
numpy.org
https://numpy.org/devdocs/user/quickstart.html
NumPy quickstart — NumPy v2.5.dev0 Manual
NumPy’s main object is the homogeneous multidimensional array. It is a table of elements (usually numbers), all of the same type, indexed by a tuple of non-negative integers.
Global web icon
numpy.org
https://numpy.org/doc/2.2/user/absolute_beginners.…
NumPy: the absolute basics for beginners — NumPy v2.2 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.
Global web icon
numpy.org
https://numpy.org/doc/stable/reference/constants.h…
Constants — NumPy v2.3 Manual
Notes NumPy uses the IEEE Standard for Binary Floating-Point for Arithmetic (IEEE 754). This means that Not a Number is not equivalent to infinity. Also that positive infinity is not equivalent to negative infinity. But infinity is equivalent to positive infinity. Examples Try it in your browser!
Global web icon
numpy.org
https://numpy.org/doc/stable/reference/index.html
NumPy reference — NumPy v2.3 Manual
This reference manual details functions, modules, and objects included in NumPy, describing what they are and what they do. For learning how to use NumPy, see the complete documentation.
Global web icon
numpy.org
https://numpy.org/doc/stable/user/basics.html
NumPy fundamentals — NumPy v2.3 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.
Global web icon
numpy.org
https://numpy.org/news/
NumPy - News
The NumPy 1.23.0 release continues the ongoing work to improve the handling and promotion of dtypes, increase the execution speed, clarify the documentation, and expire old deprecations.
Global web icon
numpy.org
https://numpy.org/doc/stable/reference/generated/n…
numpy.where — NumPy v2.3 Manual
numpy.where # numpy.where(condition, [x, y, ]/) # Return elements chosen from x or y depending on condition.