I'm try to replace a symbolic variable at my expression. Example at image below
I'm want to get x*0.375, but (3*x)/8 isn't equal. Maybe I'm doing something wrong?

1 Comment

Instead of posting a picture, it's easier for you and for us, if you copy and paste your code.

Sign in to comment.

 Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 29 Apr 2016
Edited: Azzi Abdelmalek on 29 Apr 2016
syms x a
expr=x*a
acounted=3/8
subs(expr,a,3/8)
3/8=0.3750,
Why do you think 3/8 and 0.3750 are not equal?

More Answers (0)

Community Treasure Hunt

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

Start Hunting!