フィルターのクリア

Results for eig function

1 回表示 (過去 30 日間)
B
B 2017 年 11 月 22 日
回答済み: Torsten 2017 年 11 月 22 日
The code:
format short;
A=[13 14;
29 30];
B= A^10;
disp(B);
C=det(B);
disp("Determinant is");
disp(C);
% That is approximately zero.
e=eig(B);
disp(e);
The output:
1.0e+16 *
0.7195 0.7535
1.5607 1.6344
Determinant is
2.0499e+15
1.0e+16 *
0
2.3539
What does the output value of the eig function mean? I thought it was supposed to be the eigenvalues. Does the 1.0e+16 * 0 mean actual multiplication?

採用された回答

Torsten
Torsten 2017 年 11 月 22 日
Use
format longE
Best wishes
Torsten.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by