1 / 7

LU Decomposition & Cholesky Decomposition

LU Decomposition & Cholesky Decomposition. 2018/10/30 You-Jia Sun. LU Decomposition. A is a n-by-n matrix A=LU L is lower triangular matrix; U is upper triangular matrix. A. L. U. E lementary row operation Row switching: Row i <-> Row j

ajohns
Télécharger la présentation

LU Decomposition & Cholesky Decomposition

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. LU Decomposition& Cholesky Decomposition 2018/10/30 You-Jia Sun

  2. LU Decomposition A is a n-by-n matrix A=LU L is lower triangular matrix; U is upper triangular matrix. A L U

  3. Elementary row operation • Row switching: Rowi<-> Rowj • Row multiplication: kRowi-> Rowi, where k ≠ 0 • Row substitution: Replace: Rowi - lRowj-> Rowi, where i ≠ j • The row calculation result, called U mtarix, is an upper matrix. • If all of the diagonal elements of U matrix is not zero, A is nonsingular matrix. U

  4. Elementary matrix Eij(i,j) = -lij • L is an unitriangular matrix and its elements below diagonal are -lij

  5. LDU decomposition A L U = * = * * D U L

  6. Cholesky Decomposition A = LLT = * = symmetric

  7. Change a vector of independent r.v. into dependent variables A random vector Z, satisfied cov(Z) = I We want to get vector X = (x1,…,xn)Tsatisfied cov(X) = ∑ By Cholesky Decomposition,∑ = LLT,X=LZ Cov(X) = cov(LZ) = Lcov(Z)LT=LLT= ∑

More Related