Jim wrote: > Wow! All I wanted to do was write the equivalence > of the Fortran statement: Real*4 matrix(n,n).
If you are doing numerical linear algebra in Python, you should use the Numeric or Numarray modules. With Numeric, the equivalent is just from Numeric import zeros matrix = zeros([n,n],Float) -- http://mail.python.org/mailman/listinfo/python-list