R has a qr() function, which performs QR decomposition using either LINPACK or LAPACK (in my experience, the latter is 5% faster). The main object returned is a matrix "qr" that contains in the upper triangular matrix R (i.e. R=qr[upper.tri(qr)]). So far so good. The lower triangular part of qr contains Q "in compact form". One can extract Q from the qr decomposition by using qr.Q(). I would like to find the inverse of qr.Q(). In other word, I do have Q and R, and would like to put them in a "qr" object. R is trivial but Q is not. The goal is to apply to it qr.solve(), which is much faster than solve() on large systems.
|
|
||||
IntroductionR uses the LINPACK Each reflection matrix Hi can be represented by a length-(m-i+1) vector. For example, H1 requires a length-m vector for compact storage. All but one entry of this vector is placed in the first column of the lower triangle of the input matrix (the diagonal is used by the R factor). Therefore, each reflection needs one more scalar of storage, and this is provided by an auxiliary vector (called The compact representation used is different between the LINPACK and LAPACK routines. The LINPACK WayA Householder reflection is computed as Hi = I - viviT/pi, where I is the identity matrix, pi is the corresponding entry in
LINPACK ExampleLet's work through the example from the QR decomposition article at Wikipedia in R. The matrix being decomposed is
We do the decomposition, and the most relevant portions of the result is shown below:
This decomposition was done (under the covers) by computing two Householder reflections and multiplying them by A to get R. We will now recreate the reflections from the information in
Now let's verify the Q computed above is correct:
Looks good! We can also verify QR is equal to A.
The LAPACK WayA Householder reflection is computed as Hi = I - piviviT, where I is the identity matrix, pi is the corresponding entry in
There is another twist when using the LAPACK routine in R: column pivoting is used, so the decomposition is solving a different, related problem: AP = QR, where P is a permutation matrix. LAPACK ExampleThis section does the same example as before.
Notice the
Once again, the Q computed above agrees with the R-provided Q.
Finally, let's compute QR.
Notice the difference? QR is A with its columns permuted given the order in |
|||
|
|
|
I am confused regarding the qr.Q() code. I tried it and it doesn't seem to work. I'm sure I made a mistake. Could you elaborate on this point of code? I will say one thing that solve() also depends / uses LAPACK along with almost all the general linear algebra stuff in R. So it should be very fast for large systems as well. You can try to compile R from source with the latest ATLAS libraries. If you have a multicore computer you can use multithreaded ATLAS BLAS & LAPACK, which is extremely fast, comparable to the commercial MKL BLAS & LAPACK from Intel. ATLAS is open source. Using multithreaded ATLAS on a centrino duo Ubuntu 64-bit laptop, I could matrix multiply a 3000 by 3000 matrix of doubles with itself in around 4 seconds. I think all serious R users should take advantage of multithreaded ATLAS. Imho solve() should not be that slow especially if you are taking advantage of all available threads. Please do elaborate on qr.Q(). Thanks. |
|||
|
|
I have researched for this same problem as the OP asks and I don't think it is possible. Basically the OP question is whether having the explicitly computed Q, one can recover the H1 H2 ... Ht. I do not think this is possible without computing the QR from scratch but I would also be very interested to know whether there is such solution. I have a similar issue as the OP but in a different context, my iterative algorithm needs to mutate the matrix A by adding columns and/or rows. The first time, the QR is computed using DGEQRF and thus, the compact LAPACK format. After the matrix A is mutated e.g. with new rows I can quickly build a new set of reflectors or rotators that will annihilate the non-zero elements of the lowest diagonal of my existing R and build a new R but now I have a set of H1_old H2_old ... Hn_old and H1_new H2_new ... Hn_new (and similarly tau's) which can't be mixed up into a single QR compact representation. The two possibilities I have are, and maybe the OP has the same two possibilities:
The long answer from David basically explains what the compact QR format is but not how to get to this compact QR format having the explicit computed Q and R as input. |
||||
|
|
R = qr[upper.tri(qr)]returns only the elements above the diagonal, and also they are not returned as a matrix. To get a matrix containing only the upper triangle with the diagonal, one option isR = qr*upper.tri(qr, diag=TRUE). – David Alber Sep 21 '11 at 20:23