【相關推薦:Python3影片教學 】
np.where(condition, x, y),即condition為條件,當滿足條件輸出為x,不滿足條件則輸出y.直接上程式碼:
a = np.arange(10) //array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) print(np.where(a > 5, 1, -1)) //array([-1, -1, -1, -1, -1, -1, 1, 1, 1, 1])
np.where([[True,False], [True,True]], [[1,2], [3,4]], [[9,8], [7,6]]) // 输出 array([[1, 8], [3, 4]])
為了方便理解再舉一個例子:
a = 10 >>> np.where([[a > 5,a < 5], [a == 10,a == 7]], [["chosen","not chosen"], ["chosen","not chosen"]], [["not chosen","chosen"], ["not chosen","chosen"]]) //array([['chosen', 'chosen'], ['chosen', 'chosen']], dtype='<U10')
>>> a = np.array([2,4,6,8,10]) >>> np.where(a > 5) //(array([2, 3, 4]),) 返回索引值 >>> a[np.where(a > 5)] //array([ 6, 8, 10]) 返回元素值,即a[索引]
a = array([[0., 1.], [0., 1.], [0., 1.], [0., 1.], [0., 1.], [0., 1.], [0., 1.], [0., 1.], [1., 0.], [0., 1.], [0., 1.], [0., 1.], [1., 0.], [1., 0.], [0., 1.], [0., 1.], [1., 0.], [0., 1.], [1., 0.], [0., 1.]]) np.where(a == 1) //(array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, // 17, 18, 19], dtype=int64), // array([1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1], // dtype=int64))
import numpy as np data = np.array([[0, 2, 0], [3, 1, 2], [0, 4, 0]]) new_data = np.where((data>= 0) & (data<=2), np.ones_like(data), np.zeros_like(data)) print(new_data)
[[1 1 1]##從中可以看出data中每個元素只要滿足data>=0且data<=2, 滿足就回傳np.ones_like(data)[0 1 1]
[0 1 1]
1]
對應座標的值,不滿足就傳回np.zeros_like(data)對應座標的值。當然x , y可以換成其他的值,只要與條件相同尺寸就可以。
【相關推薦:Python3影片教學 】
以上是Python詳細解析之np.where()的程式碼應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!