📜  Python| numpy matrix.min()

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

Python| numpy matrix.min()

借助Numpy matrix.min()方法,我们可以从给定矩阵中获取最小值

示例 #1:
在这个例子中,我们可以看到我们能够在方法matrix.min()的帮助下从给定矩阵中获得最小值。

# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[64, 1; 12, 3]')
          
# applying matrix.min() method
geeks = gfg.min()
    
print(geeks)
输出:
1

示例 #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.min() method
geeks = gfg.min()
    
print(geeks)
输出:
-9