New Array proposal (So that it will actually be read)
Daniel Yoo
dyoo at hkn.eecs.berkeley.edu
Fri Dec 28 02:08:42 EST 2001
More information about the Python-list mailing list
Fri Dec 28 02:08:42 EST 2001
- Previous message (by thread): try-except-finally question
- Next message (by thread): New Array proposal (So that it will actually be read)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Andrew Nguyen <pythonnet at hotmail.com> wrote: : I think that an array sould have natural dimension support, Have you had a chance to look at Numeric Python yet? http://www.pfdubois.com/numpy/ This module provides good support for multidimensional arrays, and in fact, supports many of the things that you're looking for. For example: ### a = arrayrange(9) a.shape = (3, 3) a[1, 1] = 42 ### should work. The documentation has good example of Numeric Python here: http://www.pfdubois.com/numpy/html2/numpy.html
- Previous message (by thread): try-except-finally question
- Next message (by thread): New Array proposal (So that it will actually be read)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list