Page 1 of 1

Implement Choleksy Factorization A=LDL^T in MATLAB. To solve the equation Ax=b with backward substitution. A=[2 -1 0;-1

Posted: Mon May 09, 2022 6:19 am
by answerhappygod
Implement Choleksy Factorization A=LDL^T in MATLAB.
To solve the equation Ax=b with backward substitution.
A=[2 -1 0;-1 2 -1;0 -1 1];
b=[1;0;0];
Do not use built-in MATLAB function chol()