python中numpy计算数组的行列式numpy.linalg.det()

Posted 樟樟22

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中numpy计算数组的行列式numpy.linalg.det()相关的知识,希望对你有一定的参考价值。

numpy.linalg.det

numpy.linalg.det(a)[source]

计算任何一个数组a的行列式,但是这里要求数组的最后两个维度必须是方阵。

参数:

a : (..., M, M) array_like

Input array to compute determinants for.

返回:

det : (...) array_like

Determinant of a.

 

 

 

 

 

 

 

例如:

 1 >>>a=np.reshape(np.arange(6),(2,3))
 2 >>>a
 3 out:array([[0, 1, 2],
 4        [3, 4, 5]])
 5 >>>np.linalg.det(a)
 6 out:LinAlgError: Last 2 dimensions of the array must be square
 7 
 8 >>>a=np.reshape(np.arange(20),(5,2,2))
 9 >>>a
10 out:array([[[ 0,  1],
11         [ 2,  3]],
12 
13        [[ 4,  5],
14         [ 6,  7]],
15 
16        [[ 8,  9],
17         [10, 11]],
18 
19        [[12, 13],
20         [14, 15]],
21 
22        [[16, 17],
23         [18, 19]]])
24 
25 >>>np.linalg.det(a)
26  out:array([-2., -2., -2., -2., -2.])

其实这个函数就是为了计算方阵的行列式值的。

以上是关于python中numpy计算数组的行列式numpy.linalg.det()的主要内容,如果未能解决你的问题,请参考以下文章

100天精通Python(数据分析篇)——第50天:numpy进阶

Python NumPy的使用

利用Numpy计算行列式

用cupy(python)计算矩阵的行列式

numpy使用[]语法索引二维numpy数组中指定行列位置的数值内容(access value at certain row and column in numpy array)

python使用numpy中的equal函数比较两个numpy数组中每个位置的元素是否相同并计算相同元素的比例