Python numpy.lcm()

Python numpy.lcm()

numpy.lcm(arr1, arr2, out = None, where = True, casting = ‘same_kind’, order = ‘K’, dtype = None) :这个数学函数可以帮助用户计算出arr1和arr2元素的lcm值。
Python中的numpy.lcm()

参数 :
arr1 / arr2 :[array_like]输入阵列。

返回 :两个或更多数字的LCM。

代码 :

# 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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程