Numpy 的 less_equal(~)
方法對給定的兩個數組執行逐元素 less-than-or-equal-to (<=) 比較。
參數
1. x1
| array_like
第一個輸入數組。
2. x2
| array-like
第二個輸入數組。
3. out
| Numpy array
| optional
您可以將計算的平均值放入 out
指定的數組中,而不是創建新數組。
4. where
| boolean
的array
| optional
標記為 False 的值將被忽略,即它們的原始值將未被初始化。如果您指定了 out
參數,則行為會略有不同 - 原始值將保持不變。
返回值
如果 a
是標量,則返回單個布爾值。否則,返回一個 Numpy 布爾數組。
例子
基本用法
np.less_equal([1,4], [2,3])
array([ True, False])
np.less_equal(5,5)
False
相關用法
- Python numpy string less_equal()用法及代碼示例
- Python NumPy less方法用法及代碼示例
- Python len方法用法及代碼示例
- Python len()用法及代碼示例
- Python calendar leapdays()用法及代碼示例
- Python NumPy lexsort方法用法及代碼示例
- Python list remove()用法及代碼示例
- Python locals()用法及代碼示例
- Python Django logout用法及代碼示例
- Python NumPy logaddexp2方法用法及代碼示例
- Python PIL logical_and() and logical_or()用法及代碼示例
- Python NumPy log方法用法及代碼示例
- Python NumPy logspace方法用法及代碼示例
- Python Django login用法及代碼示例
- Python NumPy logical_or方法用法及代碼示例
- Python NumPy log2方法用法及代碼示例
- Python logging.handlers.SocketHandler.makePickle用法及代碼示例
- Python NumPy lcm方法用法及代碼示例
- Python ldexp()用法及代碼示例
- Python NumPy loadtxt方法用法及代碼示例
- Python PIL logical_xor() and invert()用法及代碼示例
- Python logging.Logger.debug用法及代碼示例
- Python list轉string用法及代碼示例
- Python logging.debug用法及代碼示例
- Python NumPy log1p方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | less_equal method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。