January 31st, 2003, 4:54 pm
Thank you for your reply:The problem here is that H is not a square matrix (say it's n rows x k columns), and W is a square matrix (n x n).So the suggested H x InvW x HT is not a valid multiplication.Also, is the rule Inv(AB) = Inv(A) x Inv(B) general?I tried it on a simple example:A= [{1, 2}, {3, 4}] and B = [{5, 6}, {3, 5}]and Inv(A x B) <> Inv(A) x Inv(B).And finally, in my case the matrix is orthonormal, not orthogonal.Thanks