Starting with all symbols, ending with mixed symbols and number?
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm performing some symbolic manipulations that result in
(a/b)*x
I'd like to keep 'x' a symbol and substitute numbers for a and b. Unfortunately, the numbers are treated symbolically and a/b doesn't simplify
double((a/b)*x ) doesn't work because x is still a symbol. I'm sure there's a trivial solution that I haven't found.
thanks in advance
댓글 수: 0
채택된 답변
Walter Roberson
2023년 12월 11일
syms a b x
%Expression
y = (a/b)*x;
newy0 = subs(y, [a b], [2 3])
newy1 = subs(y, [a b], sym([2 3], 'd'))
newy2 = vpa(subs(y, [a b], [2 3]))
sympref('FloatingPointOutput', true)
newy4 = subs(y, [a b], [2 3])
댓글 수: 0
추가 답변 (2개)
Torsten
2023년 12월 11일
이동: Torsten
2023년 12월 11일
Unfortunately, the numbers are treated symbolically and a/b doesn't simplify
The numbers are not treated symbolically, but as long as x is symbolic, the complete expression is symbolic.
"double" can only be applied to expressions in which all symbolic variables have been substituted by numerical values.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Special Values에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!