📜  NumPy-线性代数

📅  最后修改于: 2020-11-08 07:41:59             🧑  作者: Mango


NumPy软件包包含numpy.linalg模块,该模块提供线性代数所需的所有功能。下表描述了此模块中的一些重要功能。

Sr.No. Function & Description
1 dot

Dot product of the two arrays

2 vdot

Dot product of the two vectors

3 inner

Inner product of the two arrays

4 matmul

Matrix product of the two arrays

5 determinant

Computes the determinant of the array

6 solve

Solves the linear matrix equation

7 inv

Finds the multiplicative inverse of the matrix