亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中如何使用numpy.where()函數

發布時間:2020-11-04 09:34:06 來源:億速云 閱讀:143 作者:小新 欄目:編程語言

小編給大家分享一下Python中如何使用numpy.where()函數,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

numpy.where(condition [,x,y])函數返回滿足給定條件的輸入數組中元素的索引。

參數:condition : When True, yieldx, otherwise yield y.x,yValues from which to choose. x, y and

condition need to be broadcastable to some shape.

返回:out : [ndarray or tuple of ndarrays] If both x and y are specified, the output array contains elements of x where condition is True, and elements from y elsewhere.

If only condition is given, return the tuple condition.nonzero(), the indices where condition is True.

代碼1:

# Python program explaining       # where() function         import numpy as np       np.where([[True, False], [True, True]],         [[1, 2], [3, 4]], [[5, 6], [7, 8]])

輸出:

array([[1, 6],       [3, 4]])

代碼2:

# Python program explaining       # where() function         import numpy as np       # a is an array of integers.     a = np.array([[1, 2, 3], [4, 5, 6]])       print(a)       print ('Indices of elements <4')       b = np.where(a<4)     print(b)       print("Elements which are <4")     print(a[b])

輸出:

[[1 2 3] [4 5 6]] Indices of elements <4 (array([0, 0, 0], dtype=int64), array([0, 1, 2], dtype=int64)) Elements which are <4 array([1, 2, 3])

看完了這篇文章,相信你對Python中如何使用numpy.where()函數有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

互助| 揭西县| 五河县| 汾西县| 罗田县| 思茅市| 民乐县| 仲巴县| 舞阳县| 沙田区| 平远县| 娄烦县| 英吉沙县| 威信县| 嘉鱼县| 瓦房店市| 镇赉县| 沙湾县| 广昌县| 东阿县| 山阳县| 五家渠市| 曲周县| 双鸭山市| 泰兴市| 内黄县| 开平市| 五莲县| 泗洪县| 任丘市| 玛纳斯县| 江川县| 西林县| 固始县| 翼城县| 囊谦县| 九寨沟县| 渝中区| 扬中市| 罗江县| 曲阜市|