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()
Implement Choleksy Factorization A=LDL^T in MATLAB. To solve the equation Ax=b with backward substitution. A=[2 -1 0;-1
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Implement Choleksy Factorization A=LDL^T in MATLAB. To solve the equation Ax=b with backward substitution. A=[2 -1 0;-1
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!