summaryrefslogtreecommitdiff
path: root/191/CH4/EX4.12/Example4_12.sce
blob: c205c7faed7e409f84173e91ba82bd50f2d5210d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//stable LR method
clc;
clear;
close();
format('v',7);
A = [2 1 3 1;-1 2 2 1;1 0 1 0;-1 -1 -1 1];
disp(A, 'A = ');
for i = 1:6
   [L,R,P]= lu(A);
   A = R*P*L; 
   disp(A,R,L,'The L R and A matrix are : ');
end
disp(A,'The (1,1) and (4,4) elements have converged to real eigenvalues')
X = [A(2,2) A(2,3);A(3,2) A(3,3)];
E = spec(X);
disp(E,'Although submatrix themselves are not converging their eigen values converges.')