About 82,000 results
Open links in new tab
  1. NumPy

    Manipulate JSON-like data with NumPy-like idioms. uarray: Python backend system that decouples API from implementation; unumpy provides a NumPy API. tensorly: Tensor …

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

  3. 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. Beginners# There’s a ton of …

  4. NumPy

    Ferramentas de computação numérica O NumPy oferece um conjunto completo de funções matemáticas, geradores de números aleatórios, rotinas de álgebra linear, transformadas de …

  5. NumPy quickstart — NumPy v2.3 Manual

    Understand the difference between one-, two- and n-dimensional arrays in NumPy; Understand how to apply some linear algebra operations to n-dimensional arrays without using for-loops; …

  6. NumPy: the absolute basics for beginners — NumPy v2.3 Manual

    NumPy (Numerical Python) is an open source Python library that’s widely used in science and engineering. The NumPy library contains multidimensional array data structures, such as the …

  7. NumPy user guide — NumPy v2.3 Manual

    What is NumPy? Installation; NumPy quickstart; NumPy: the absolute basics for beginners

  8. NumPy

    数値計算ツール群 NumPyは、様々な数学関数、乱数生成器、線形代数ルーチン、フーリエ変換などを提供しています。 オープンソース NumPyは、寛容なBSDライセンスで公開されてい …

  9. NumPy Documentation

    NumPy.org; NumPy Documentation. Web; Latest (development) documentation; NumPy Enhancement Proposals; Versions: Numpy 2.3 Manual [Reference Guide PDF] [User Guide PDF]

  10. >>> import numpy as np >>> a = np.arange(15).reshape(3, 5) >>> a array([[ 0, 1, 2, 3, 4], [ 5, 6, 7, 8, 9], [10, 11, 12, 13, 14]]) >>> a.shape (3, 5) >>> a.ndim 2 >>> a.dtype.name 'int64' >>> …