tripp wrote:
... dump the arrays to a binary file (much faster than dumping it to a text)
> from the fortran program....
How well does python handle binary files? Maybe I could skit the f2py all together if I can get python to read the fortran binary file...
Likely your best plan. Look into the numpy external package, because those arrays are _far_ superior for actual calculation. With numpy you can do array_1 + array_2 without requiring a Python loop. I'm sure it has a way to read in binary arrays of the various data types. --Scott David Daniels scott.dani...@acm.org -- http://mail.python.org/mailman/listinfo/python-list