summaryrefslogtreecommitdiff
path: root/26/CH5/EX5.2.7/5_2_7.sce
blob: 22bd3253e63693cae636f47039634e469ca6b100 (plain)
1
2
3
4
5
6
7
disp('To find the eigenvalues of matrix A.')
disp('A=')
a=[5 3;-4 4]
disp(a)
disp('Eigen values of A are:')
disp(spec(a))
disp('Hence, A has no real eigenvalues.')