Search
Search Results
Search finished, found 6 page(s) matching the search query.
- numpy.gcd
...NumPy reference Routines and objects by topic Mathematical functions numpy.gcd...
- numpy.gcd (Python data, in numpy.gcd)
- NumPy 1.15.0 Release Notes
...e field names in python 2.7. Improved support for PyPy. Fixes and improvements to numpy.einsum. New functions numpy.gcd and numpy.lcm, to compute the greatest common divisor and least common multiple. numpy.ma.stack, the numpy.stack arr...
- NumPy 1.17.1 Release Notes
...nt that causes a SystemError on python 3.7. #14159: BUG: Fix DeprecationWarning in python 3.8. #14160: BLD: Add missing gcd/lcm definitions to npy_math.h #14161: DOC, BUILD: cleanups and fix (again) ‘build dist’ #14166: TST: Add 3.8-dev to...
- numpy.gcd
...NumPy reference Routines and objects by topic Mathematical functions numpy.gcd...
- numpy.lcm
...west common multiple of the absolute value of the inputs This is a scalar if both x1 and x2 are scalars. See also gcdThe greatest common divisor Examples >>> import numpy as np >>> np.lcm(12, 20) 60 >>> np.lcm.reduce([3, 12, 20]) 6...