Re: [Numpy-discussion] Greater common divisor

2010-06-08 Thread Sebastian Haase
googling for greatest common divisor OR denominator numpy OR scipy OR python I found this: http://projects.scipy.org/numpy/browser/trunk/numpy/core/_internal.py?rev=8316 554 def _gcd(a, b): 555 Calculate the greatest common divisor of a and b 556 while b: 557 a, b

Re: [Numpy-discussion] Greater common divisor

2010-06-08 Thread Charles R Harris
On Mon, Jun 7, 2010 at 4:19 AM, Daniele Nicolodi dani...@grinta.net wrote: Hello. There is a method in numpy to compute the greater common divisor of the elements of an array? Searching through the documentation I didn't find it. If you need to do more complicated stuff based around the GCD,