📜  Python中的 numpy.gcd()

📅  最后修改于: 2022-05-13 01:54:59.538000             🧑  作者: Mango

Python中的 numpy.gcd()

numpy.gcd(arr1, arr2, out = None, where = True, casting = 'same_kind', order = 'K', dtype = None) :这个数学函数帮助用户计算 |arr1| 的 GCD 值和 |arr2|元素。

两个或多个不全为零的数字的最大公约数 (GCD) 是除以每个数字的最大正数。

示例:查找 120 和 2250 的 GCD

120 = 2^3 * 3 * 5
2250 = 2 * 3^2 * 5^3

Now, GCD of 120 and 2250 = 2 * 3 * 5 = 30

代码 :

# Python program illustrating 
# gcd() method 
import numpy as np 
  
arr1 = [120, 24, 42, 10]
arr2 = [2250, 12, 20, 50]
  
print ("arr1 : ", arr1)
print ("arr2 : ", arr2)
  
print ("\nGCD of arr1 and arr2 : ", np.gcd(arr1, arr2))
print ("\nGCD of arr1 and 10   : ", np.gcd(arr1, 10))
           

输出 :

arr1 : [120, 24, 42, 10]
arr2 : [2250, 12, 20, 50]

GCD of arr1 and arr2 : [30, 12,  2, 10]

GCD of arr1 and 10   : [10,  2,  2, 10]