The LAPACK forum has moved to https://github.com/Reference-LAPACK/lapack/discussions.

INVERSION MATRIX

Open discussion regarding features, bugs, issues, vendors, etc.

INVERSION MATRIX

Postby alex_1978 » Wed Jun 04, 2008 7:31 pm

Hello,

I want to invert a small (in dimensions) matrix this matrix is not a square but when I multiply by the transpose then the product GG(Transpose) is 15x15.
There is someone that he has already used a code (in Lapack) for this inversion?
alex_1978
 
Posts: 2
Joined: Wed Jun 04, 2008 7:20 pm

Postby kdallen » Fri Jun 06, 2008 9:02 pm

Are saying you want to find the inverse of J where J = A'A (A' means transpose of A)?

If so, then J = R'R (where R is from QR factorization of A and R' is the transpose of R). The inverse is easily calculated by computing the QR factorization of A (dgeqrf?), then solving 2 triangular linear equations (dtrtrs?).

What you want is X is where R'RX = I (I = identity matrix).

Unless I totally miss what you are trying to do.
kdallen
 
Posts: 39
Joined: Sun Jan 28, 2007 12:48 am

Postby alex_1978 » Sat Jun 07, 2008 5:13 am

kdallen wrote:Are saying you want to find the inverse of J where J = A'A (A' means transpose of A)?

If so, then J = R'R (where R is from QR factorization of A and R' is the transpose of R). The inverse is easily calculated by computing the QR factorization of A (dgeqrf?), then solving 2 triangular linear equations (dtrtrs?).

What you want is X is where R'RX = I (I = identity matrix).

Unless I totally miss what you are trying to do.


Thank you very much, I will try to do
alex_1978
 
Posts: 2
Joined: Wed Jun 04, 2008 7:20 pm


Return to User Discussion

Who is online

Users browsing this forum: No registered users and 8 guests