Different results for the same equation
1 回表示 (過去 30 日間)
古いコメントを表示
Why E1 is different than E3, though lambda(1)= lambda(3)

0 件のコメント
回答 (1 件)
Steven Lord
2021 年 1 月 14 日
lambda(1) is displayed the same as lambda(3) but its value is not identical to the value of lambda(3).
A = [-10 10 -15; 10 5 -30; -5 -10 0];
lambda = eig(A)
lambda(1) == lambda(3) % false
lambda(1)-lambda(3) % very small but not 0
2 件のコメント
Walter Roberson
2021 年 1 月 14 日
A = [-10 10 -15; 10 5 -30; -5 -10 0];
lambda = eig(A)
lambda(1) + 15
lambda(3) + 15
The third lambda is an exact integer. When you calculate A-lambda(3)*eye(3) you get exact integers, and rref() is able to calculate exact integer outputs.
When you use format short (which is the default) and all of the outputs to be displayed are exact integers, then no decimal points are shown. When any of the outputs are not exact integers, then decimal points are shown in all of the outputs.
参考
カテゴリ
Help Center および File Exchange で Operating on Diagonal Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!