I am exploring the modules scipy and linalg using python under Win XP and IDLE.
Defining m=matrix( .. ) and trying to compute the inverse of m: >>> inverse(m) I get an array: >>>array( .. ) This is unfortunate. I would rather have a matrix returned as the rules for manipulating matrices and arrays differ. >>> matrix( .. ) + n does not give the same as >>> array( .. ) + n. Trying to compute the determinant of a matrix m >>>det(m) my computer resets IDLE and I get an error messages. Comments welcome. Aage -- http://mail.python.org/mailman/listinfo/python-list