📜  Python| numpy numpy.matrix.all()

📅  最后修改于: 2022-05-13 01:54:27.802000             🧑  作者: Mango

Python| numpy numpy.matrix.all()

Numpy numpy.matrix.all()方法的帮助下,我们能够将一个矩阵的每个元素与另一个矩阵进行比较,或者我们可以提供我们想要应用比较的轴。

示例 #1:
在这个例子中,我们可以看到在matrix.all()方法的帮助下,我们能够比较任何两个具有不同维度的矩阵。

# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg1 = np.matrix('[1, 2, 3, 4]')
gfg2 = np.matrix('[1, 2, 3, 4]')
          
# applying matrix.all() method
geeks = (gfg1 == gfg2).all()
    
print(geeks)
输出:
True

示例 #2:

# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg1 = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]')
gfg2 = np.matrix('[1, 2, 3]')
          
# applying matrix.all() method
geeks = (gfg1 == gfg2).all()
    
print(geeks)
输出:
False