Python Numpy matrix.sum()

Python Numpy matrix.sum()

在matrix.sum()方法的帮助下,我们能够用同样的方法找到矩阵中的数值之和。

语法: matrix.sum()
返回:返回矩阵中的数值之和

例子#1 :
在这个例子中,我们能够通过使用matrix.sum()方法找到矩阵中的数值之和。

# import the important module in python
import numpy as np
             
# make matrix with numpy
gfg = np.matrix('[4, 1; 12, 3]')
             
# applying matrix.sum() method
geek = gfg.sum()
   
print(geek)

输出:

20

例子#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.sum() method
geek = gfg.sum(axis = 1)
   
print(geek)

输出:

[[14]
 [16]
 [15]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程