NumPyの基本的な使い方#
NumPyはPythonによる科学計算の基本パッケージです。
以下の機能を提供します:
強力なN次元配列オブジェクト
洗練された(ブロードキャスティング)関数
C/C++とFortranコードを統合するツール
便利な線形代数、フーリエ変換、乱数機能
NumPy is the fundamental package for scientific computing with Python.
Website: https://www.numpy.org
Documentation: https://numpy.org/doc
Mailing list: https://mail.python.org/mailman/listinfo/numpy-discussion
Source code: numpy/numpy
Contributing: https://www.numpy.org/devdocs/dev/index.html
Bug reports: numpy/numpy#issues
Report a security vulnerability: https://tidelift.com/docs/security
It provides:
a powerful N-dimensional array object
sophisticated (broadcasting) functions
tools for integrating C/C++ and Fortran code
useful linear algebra, Fourier transform, and random number capabilities
引用: numpy · PyPI