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

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

  3. numpy.where — NumPy v2.3 Manual

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

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

  5. numpy.matmul — NumPy v2.3 Manual

    The matmul function implements the semantics of the @ operator defined in PEP 465. It uses an optimized BLAS library when possible (see numpy.linalg). Examples Try it in your browser! For …

  6. Broadcasting — NumPy v2.3 Manual

    The term broadcasting describes how NumPy treats arrays with different shapes during arithmetic operations. Subject to certain constraints, the smaller array is “broadcast” across the larger …

  7. NumPy: the absolute basics for beginners — NumPy v2.5.dev0 …

    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 …

  8. numpy.logical_and — NumPy v2.3 Manual

    numpy.logical_and # numpy.logical_and(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature]) = <ufunc 'logical_and'> # Compute the truth …

  9. Data types — NumPy v2.3 Manual

    NumPy numerical types are instances of numpy.dtype (data-type) objects, each having unique characteristics. Once you have imported NumPy using import numpy as np you can create …

  10. Mathematical functions — NumPy v2.3 Manual

    Handling complex numbers # ... Extrema finding # ... Miscellaneous # ... numpy.not_equal