numpy.lcm(arr1, arr2, out = None, where = True, casting = ‘same_kind’, order = ‘K’, dtype = None)
:此數學函數可幫助用戶計算| arr1 |的lcm值。和| arr2 |元素。
參數:
arr1 / arr2: [array_like]Input array.返回: LCM of two or more numbers.
代碼:
# Python program illustrating
# lcm() method
import numpy as np
arr1 = [120, 24, 42, 10]
arr2 = [2250, 12, 20, 50]
print ("arr1:", arr1)
print ("arr2:", arr2)
print ("\nlcm of arr1 and arr2:", np.lcm(arr1, arr2))
print ("\nlcm of arr1 and 10 :", np.lcm(arr1, 10))
輸出:
arr1:[120, 24, 42, 10] arr2:[2250, 12, 20, 50] lcm of arr1 and arr2:[9000, 24, 420, 50] lcm of arr1 and 10 :[120, 120, 210, 10]
相關用法
注:本文由純淨天空篩選整理自Mohit Gupta_OMG 大神的英文原創作品 numpy.lcm() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。