中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用python怎么判斷數組中的元素是否相同

發布時間:2021-01-08 14:33:28 來源:億速云 閱讀:1525 作者:Leah 欄目:開發技術

使用python怎么判斷數組中的元素是否相同?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

使用np.unique()的方法,代碼如下:

import numpy as np


class Debug:
 @staticmethod
 def isAllElementSame():
 x1 = np.array([[1, 2, 3], [3, 4, 5], [6, 7, 8]])
 x2 = np.array([[81., 162., 243., ], [243., 324., 405.], [486., 567., 648.]])
 print('The result if x2/x1 is:')
 print(x2 / x1)
 print('Judge whether all elements in array are same or not')
 print(len(np.unique(x2 / x1)) == 1)


if __name__ == '__main__':
 debug = Debug()
 debug.isAllElementSame()
"""
The result if x2/x1 is:
[[81. 81. 81.]
 [81. 81. 81.]
 [81. 81. 81.]]
Judge whether all elements in array are same or not
True
"""

可以看到,當輸出為True的時候,表明數組中的所有元素的值均一致,反之,當為False的時候,數組中存在不一樣的元素值。

如果數組中的元素是復數呢?

import numpy as np


class Debug:
 @staticmethod
 def isAllElementSame():
  x1 = np.array([complex(1, 2), complex(2, 4)])
  x2 = np.array([complex(2, 4), complex(4, 8)])
  print('The result if x2/x1 is:')
  print(x2 / x1)
  print('Judge whether all elements in array are same or not')
  print(len(np.unique(x2 / x1)) == 1)


if __name__ == '__main__':
 debug = Debug()
 debug.isAllElementSame()
"""
The result if x2/x1 is:
[2.+0.j 2.+0.j]
Judge whether all elements in array are same or not
True
"""

可以看到,當數組元素為復數時,該方法仍然適用。然而當數組元素為小數時,可能會失效,如果失效,加上np.round()函數并設定所需要保留的有效位小數即可,例如:print(len(np.unique(np.round(x2 / x1))) == 1)。

看完上述內容,你們掌握使用python怎么判斷數組中的元素是否相同的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

沁阳市| 沙雅县| 西城区| 永川市| 沾益县| 云和县| 游戏| 海南省| 长岛县| 大同市| 惠东县| 乐安县| 蒙自县| 财经| 建瓯市| 理塘县| 鄂伦春自治旗| 太谷县| 淮滨县| 会泽县| 博野县| 洮南市| 志丹县| 门源| 舞钢市| 姚安县| 揭阳市| 广元市| 瑞昌市| 华安县| 沙河市| 海城市| 瓮安县| 衡阳县| 正定县| 金昌市| 黄冈市| 阜平县| 江口县| 敖汉旗| 铜梁县|