use matlab to Solve equation a*x^3 + b*x^2 + c=0
时间: 2023-05-14 16:06:44 浏览: 105
matlab求解数学问题
Sure, you can use the roots function in MATLAB to solve this equation. Here's an example code:
a = 1;
b = -2;
c = -3;
roots([a b c])
This will give you the three roots of the equation.
阅读全文