필터 지우기
필터 지우기

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 CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by