chol MATLAB in the () function

cholesky decomposition:
R=chol(A): matrix A must be symmetric positive definite, the decomposition of the matrix R is an upper triangular, and should thus be R T R = A;
may be used:
R=chol(A,'upper')# R T R = A
L=chol(A,'lower')# LL T = A

Published 109 original articles · won praise 30 · views 10000 +

Guess you like

Origin blog.csdn.net/qq_43448491/article/details/103071349