About 64,200 results
Open links in new tab
  1. 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 …

  2. NumPy - Learn

    Below is a curated collection of educational resources, both for self-learning and teaching others, developed by NumPy contributors and vetted by the community.

  3. NumPy Documentation

    NumPy 1.20 Manual [HTML+zip] [Reference Guide PDF] [User Guide PDF] NumPy 1.19 Manual [HTML+zip] [Reference Guide PDF] [User Guide PDF] NumPy 1.18 Manual [HTML+zip] [Reference …

  4. 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.

  5. NumPy quickstart — NumPy v2.3 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.

  6. NumPy: the absolute basics for beginners — NumPy v2.5.dev0 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.

  7. NumPy reference — NumPy v2.3 Manual

    Jun 9, 2025 · 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 …

  8. NumPy - News

    Dec 8, 2024 · 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 …

  9. 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.

  10. numpy.where — NumPy v2.3 Manual

    numpy.where # numpy.where(condition, [x, y, ]/) # Return elements chosen from x or y depending on condition.