91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用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

英吉沙县| 辽阳县| 小金县| 佳木斯市| 锦州市| 横山县| 三亚市| 耿马| 永仁县| 绍兴县| 二连浩特市| 东城区| 郯城县| 礼泉县| 拜泉县| 舞阳县| 白银市| 西城区| 香河县| 浮梁县| 监利县| 凤山县| 宝鸡市| 习水县| 会东县| 湛江市| 博爱县| 涡阳县| 镶黄旗| 乐都县| 大邑县| 蕉岭县| 江山市| 商南县| 吉安县| 桃园县| 泰宁县| 元谋县| 柳林县| 黄平县| 宁河县|