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

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

  3. NumPy: the absolute basics for beginners — NumPy v2.3 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 …

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

  5. numpy.arange — NumPy v2.3 Manual

    In such cases, the use of numpy.linspace should be preferred. The built-in range generates Python built-in integers that have arbitrary size, while numpy.arange produces numpy.int32 or …

  6. numpy.where — NumPy v2.3 Manual

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

  7. numpy.polyfit — NumPy v2.3 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(x) = p[0] * x**deg + ...

  8. numpy.random.rand — NumPy v2.3 Manual

    That function takes a tuple to specify the size of the output, which is consistent with other NumPy functions like numpy.zeros and numpy.ones. Create an array of the given shape and populate …

  9. numpy.dot — NumPy v2.3 Manual

    If either a or b is 0-D (scalar), it is equivalent to multiply and using numpy.multiply(a, b) or a * b is preferred. If a is an N-D array and b is a 1-D array, it is a sum product over the last axis of a …

  10. numpy.reshape — NumPy v2.3 Manual

    NumPy reference Routines and objects by topic Array manipulation routines numpy.reshape