3次以上でも3次未満でもvpasolve()で数値解(シンボリック値)が得られます。double()で数値になります。
syms x
eqn = 0.01847 * x^2 + 1.161 * x + 11.19 == 0;
S = solve(eqn)
S = vpasolve(eqn)
double(S)
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!