Eig(A) returns long fractional answer instead of a single number

1 回表示 (過去 30 日間)
Tom Beekhuysen
Tom Beekhuysen 2020 年 7 月 19 日
回答済み: madhan ravi 2020 年 7 月 19 日
Eig(A) returns
(22/(9*(- 5/3 + (8623^(1/2)*1i)/27)^(1/3)) + ((8623^(1/2)*1i)/27 - 5/3)^(1/3) - 3)^(1/2)
instead of
-0.7462i
Is there a way to change it so decimal answers appear?

回答 (3 件)

Bhupendra Prajapati
Bhupendra Prajapati 2020 年 7 月 19 日
You can use double(eig(A)).

Steven Lord
Steven Lord 2020 年 7 月 19 日
編集済み: Steven Lord 2020 年 7 月 19 日
If the symbolic expression doesn't contain a symbolic variable and you're okay with approximating it in double precision, call double on it.
If it does contain a symbolic variable or your need a numeric approximation to higher than double precision, use the vpa function.
If you don't need to define A as a symbolic expression, define it as a double array and call eig on that numeric array.

madhan ravi
madhan ravi 2020 年 7 月 19 日
sympref('FloatingPointOutput',1) % run this once and you don’t have to call vpa() or double() every single time
doc sympref

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by