フィルターのクリア

Why is Symbolic Math Toolbox Giving Decimal Answers?

3 ビュー (過去 30 日間)
Jason
Jason 2023 年 10 月 4 日
回答済み: Paul 2023 年 10 月 4 日
When I ask symbolic math toolbox for symbolic outputs, it gives them in a decimal, but symbolic. I would like sym(pi) to give π and sym(sqrt(3)) to give . I've set my path to default and typed the command "reset(symengine)" and the commands "restoredefaultpath; rehash toolboxcache;" I've deleted and redownloaded both Matlab and the Symbolic toolbox. Any help is appreciated.

採用された回答

Paul
Paul 2023 年 10 月 4 日
Check your sympref
The defaults are
sympref
ans = struct with fields:
FourierParameters: [1 -1] HeavisideAtOrigin: 1/2 AbbreviateOutput: 1 TypesetOutput: 1 FloatingPointOutput: 0 PolynomialDisplayStyle: 'default' MatrixWithSquareBrackets: 0
Resulting in
[sym(pi) sym(sqrt(3))]
ans = 
But, if you change this pref
sympref('FloatingPointOutput',true);
sympref
ans = struct with fields:
FourierParameters: [1 -1] HeavisideAtOrigin: 0.5000 AbbreviateOutput: 1 TypesetOutput: 1 FloatingPointOutput: 1 PolynomialDisplayStyle: 'default' MatrixWithSquareBrackets: 0
then
[sym(pi) sym(sqrt(3))]
ans = 

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 10 月 4 日
sympref('FloatingPointOutput', 0)
ans = logical
0

カテゴリ

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

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by