Python Numpy matrix.trace()

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]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程