subs command gives symbolic output instead of integers
조회 수: 2 (최근 30일)
이전 댓글 표시
I observe 'subs' command in Matlab 2013b and 2014a gives output in a symbolic fassion. I have to use 'double' command to convert into numbers. Where as in previous versions.
댓글 수: 0
답변 (1개)
Walter Roberson
2014년 3월 11일
I do not have the toolbox to test with, but symbolic numbers is what I would expect, due to the potential for loss of precision if double() is always output. For example,
subs(sym('2^N'), 'N', 55)
I would expect to give the exact integer result rather than converting it to double (which would only have 53 bits precision rather than e.g., 55)
Even something like,
subs(sym('PI/2'), 'PI', sym('pi'))
I would certainly expect to give Pi/2 as symbolic form, not the double precision approximation.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Numbers and Precision에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!