MATLAB: Subs don’t work properly

mathsubssymbolicSymbolic Math Toolbox

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?

Best Answer

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?