[Numpy-discussion] extracting data from ODF files

2010-01-05 Thread Manuel Wittchen
Hi, is there a (simple) solution to extract data from OpenDocument files (espacially OpenOffice.org Calc files) into a Numpy Array? At the moment I copy the colums from OO.org Calc manually into a tab-separatet Plaintext file which is quite annoying. Regards, Manuel Wittchen

Re: [Numpy-discussion] calculating the difference of an array

2010-01-02 Thread Manuel Wittchen
example you give is due to the fact that you iterate > over len(ARRAY), which is an integer, hence not an iterable object. You > should write ``for i in range(len(ARRAY))`` instead. > > Cheers, > > Emmanuelle > > On Sat, Jan 02, 2010 at 11:23:13AM +0100, Manuel Wittchen wrot

[Numpy-discussion] calculating the difference of an array

2010-01-02 Thread Manuel Wittchen
ut I get a TypeError: File "./test.py", line 19, in for i in len(ARRAY): TypeError: 'int' object is not iterable Where is the mistake in the code? Regards and a happy new year, Manuel Wittchen ___ NumPy-Discussion mailing list N