Python Numpy matrix.prod()
在Numpy matrix.prod()方法的帮助下,我们可以从给定的矩阵中得到同一轴上所有元素的累积乘积。
语法: matrix.prod(axis)
返回:从给定的矩阵中返回乘积
例子#1 :
在这个例子中,我们可以看到,在matrix.prod()方法的帮助下,我们能够从一个给定的矩阵中得到同一轴上所有元素的乘积。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[64, 1; 12, 3]')
# applying matrix.prod() method
geeks = gfg.prod(1)
print(geeks)
输出:
[[64]
[36]]
例子#2 :
# import the important module in python
import numpy as np
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, -9]')
# applying matrix.prod() method
geeks = gfg.prod(0)
print(geeks)
输出:
[[ 28 80 -162]]