Re: Matrice Multiplication Problem

2006-08-24 Thread Robert Kern
mclaugb wrote: > I want to multiply two arrays: a matrice and the conjugate of its > transpose. Then i wish to invert the resulting matrix. You will want to ask numpy questions on the numpy mailing list. http://www.scipy.org/Mailing_Lists > In Matlab, the statement is : Z= inv(M .' * M) >

Matrice Multiplication Problem

2006-08-24 Thread mclaugb
I want to multiply two arrays: a matrice and the conjugate of its transpose. Then i wish to invert the resulting matrix. In Matlab, the statement is : Z= inv(M .' * M) To implement in python, I simply cannot get this to work. Here is my code: from numpy import * import scipy as Sci from sci