Negative Bank Team UMG x EA1 2016FIC12Engineering x 20161121
Negative Bank Team UMG x EA1 2016FIC12-Engineering x 20161121 dvi C https://springboard.uakron ID# Name (print) Signature Apply Cholesky\'s Method to decompose the following matrix into the form (Al Iul Lul where DU is an upper triangular matrix. Verily your result [A] 1 6 4 100% Sat 5:32 PM
Solution
% matlab code for cholesky\'s method
% A is the given matrix
A=[4 -1 1;1 6 -4;1 -4 5];
% chol is the built in function that is available in matlab for cholesky\'s method
U=chol(A) % the result of the method is stored in a variable called U
% to checking weather both are equal or not
isequal(U\'*U,A)
