Python Numpy matrix.trace()
在Numpy matrix.trace()方法的帮助下,我们可以通过matrix.trace()方法找到矩阵对角线的所有元素之和。
语法: matrix.trace()
返回: 返回矩阵的对角线元素之和。
例子#1 :
在这个例子中,我们可以看到,通过使用matrix.trace()方法可以帮助我们找到给定矩阵的对角线上所有元素的总和。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[4, 1; 12, 3]')
# applying matrix.trace() method
geek = gfg.trace()
print(geek)
输出:
[[7]]
例子#2 :
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]')
# applying matrix.trace() method
geek = gfg.trace()
print(geek)
输出:
[[13]]