MATLAB: Hello, I have written the following code (as seen below). The answer i obtain is what i am after, however the answer is displayed to too many decimal places. Is there a way of displaying the answers to 3 decimal places

formatsimplify

syms S F
eqn = ((0.19095128*F^4)-(0.79735279*F^3)+(4.63952318*F^2)+(7.87722585*F)== S);
v_F = solve(eqn,F);
FSN1 = vpa(v_F)

Best Answer

vpa(FSN1, 3)
Related Question