Wrong behavior of symbolic number creation in R2022a
조회 수: 3 (최근 30일)
이전 댓글 표시
In R2022a, when I tried to create a symbolic number, I got this output:
>> sym(1/3)
ans =
0.3333
The document ( https://www.mathworks.com/help/symbolic/create-symbolic-numbers-variables-and-expressions.html ) says it works as below:
>> sym(1/3)
1/3
Below is the version I am using:
Symbolic Math Toolbox Version 9.1 (R2022a)
댓글 수: 0
채택된 답변
Steven Lord
2022년 7월 19일
Did you change your symbolic preferences without realizing it?
sympref('FloatingPointOutput',true);
x = sym(1/3)
sympref('FloatingPointOutput', false);
y = sym(1/3)
sympref('FloatingPointOutput', 'default');
z = sym(1/3)
whatIsFPOSetTo = sympref('FloatingPointOutput') % Default is false
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!