📜  Python| numpy matrix.clip()

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

Python| numpy matrix.clip()

借助Numpy matrix.clip()方法,我们可以通过传递参数作为最小值最大值从矩阵中选择元素。具有这些参数和矩阵大小之间的范围的输出数组将是相同的。

示例 #1:
在这个例子中,我们可以看到在matrix.clip()方法的帮助下,我们能够将矩阵剪辑在最小值和最大值之间。

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

示例 #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.clip() method
geeks = gfg.clip(4, 9)
       
print(geeks)
输出:
[[4 4 4]
 [4 5 6]
 [7 8 9]]