函数np.clip(x,a,b),将x的范围控制在[a,b]之间,x可以是一个数也可以是数组,
x < a时值为a; x > b时值为b
y1 = np.clip(max(0,100), 0, 112)
y1
Out[32]: 100
np.clip(max(0,-9), 0, 112)
Out[33]: 0
np.clip(max(0,150), 0, 112)
Out[34]: 112
函数np.clip(x,a,b),将x的范围控制在[a,b]之间,x可以是一个数也可以是数组,
x < a时值为a; x > b时值为b
y1 = np.clip(max(0,100), 0, 112)
y1
Out[32]: 100
np.clip(max(0,-9), 0, 112)
Out[33]: 0
np.clip(max(0,150), 0, 112)
Out[34]: 112