Numpy 的 lcm(~)
方法計算給定值的最小公倍數。
參數
1. x1
| array-like
首先輸入數字。
2. x2
| array-like
第二個輸入數字。
返回值
一個 Numpy 數組,保存給定值的最小公倍數。如果 x1
和 x2
是標量,則返回類型也將是標量。
例子
np.lcm(10, 15)
30
要計算 (10,12)
和 (15,45)
的最小公倍數:
np.lcm([10, 15], [12, 45])
array([60, 45])
相關用法
- 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 len方法用法及代碼示例
- Python Django login用法及代碼示例
- Python len()用法及代碼示例
- Python NumPy less_equal方法用法及代碼示例
- Python NumPy logical_or方法用法及代碼示例
- Python NumPy log2方法用法及代碼示例
- Python logging.handlers.SocketHandler.makePickle用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Python calendar leapdays()用法及代碼示例
- Python ldexp()用法及代碼示例
- Python NumPy loadtxt方法用法及代碼示例
- Python PIL logical_xor() and invert()用法及代碼示例
- Python logging.Logger.debug用法及代碼示例
- Python list轉string用法及代碼示例
- Python logging.debug用法及代碼示例
- Python NumPy log1p方法用法及代碼示例
- Python list構造函數用法及代碼示例
- Python lzma.LZMACompressor()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | lcm method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。