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)
>
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