cholesky of a matrix with deleted rows and columns: chol(Q*A*Q')

4 Ansichten (letzte 30 Tage)
Sue
Sue am 25 Dez. 2012
For a large matrix A, Cholesky factor L exists
L = chol(A)
B is a matrix of smaller dimension obtained by deleting rows and columns via a 0/1 filter matrix:
B = Q*A*Q'
Is there a way of computing chol(B) or chol(Q*A*Q') directly from A, Q and L, without actually computing B?
Thanks

Akzeptierte Antwort

Matt J
Matt J am 25 Dez. 2012
[~,L_new] = qr(L*Q.',0);
  3 Kommentare
Matt J
Matt J am 25 Dez. 2012
Bearbeitet: Matt J am 25 Dez. 2012
Sue's post stipulates that the solution be "directly from A, Q and L, without actually computing B". My proposal does directly use Q and also L and does not compute B. I didn't require A.
Sue
Sue am 28 Dez. 2012
Thanks, this works. I simply needed to compute chol(B). ~S

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by