Re: [Numpy-discussion] problems with calculating numpy.float64

2007-05-13 Thread highdraw
Hi out there, this is the code segment if m < maxN and n < maxN and self.activeWide[m+1, n+1]: try: deltaX = x[m+1] - x[m] except TypeError: print '-' * 40

Re: [Numpy-discussion] problems with calculating numpy.float64

2007-05-12 Thread Robert Kern
[EMAIL PROTECTED] wrote: > Hello out there, > > i try to run this Python-code snippet after I have imported: Can you try to come up with a small, self-contained example? I can't replicate your problem. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma

[Numpy-discussion] problems with calculating numpy.float64

2007-05-12 Thread michael . stoelzle
Hello out there, i try to run this Python-code snippet after I have imported: import numpy as Numeric import numpy as numpy Numeric.Int = Numeric.int32 Numeric.Float = Numeric.float64 Code: if m < maxN and n < maxN and self.activeWide[m+1, n+1]: try:

[Numpy-discussion] problems with calculating numpy.float64

2007-05-11 Thread michael . stoelzle
Hello out there, i try to run this Python-code snippet after I have imported: import numpy as Numeric import numpy as numpy Numeric.Int = Numeric.int32 Numeric.Float = Numeric.float64 Code: if m < maxN and n < maxN and self.activeWide[m+1, n+1]: try: