Enter the coefficients for the Ax2 + Bx + C = 0 equation and Quadratic Equation will output the solutions and plot(if they are not imaginary).
Diego Barragán (2021). Quadratic Equation Calculator (https://www.mathworks.com/matlabcentral/fileexchange/22935-quadratic-equation-calculator), MATLAB Central File Exchange. Retrieved .
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
While you do that why not add more features, like roots of a function regardless of its order or something else. You can use the MATLAB function roots which will help immensly.
Currently, even if you fix these mistakes, it's still very bare bones and needs more features.
Hi Husam and Matt Fig, thanks a lot for review my program "Quadratic Equation Calculator". I will change it.
Regards, Diego.
I gave two stars because by running this program, the root is changed then not changed back. That is not a good way to make users of your code happy. When the user closes the GUI, you need to set colordef back to what it was prior to initialization. I will change my rating when this is fixed.
In the lines where you calculate the quadratic formula, you need a parenthesis around the 2*a, like this;
x1=(-b+sqrt(b^2-4*a*c))/(2*a)
x2=(-b-sqrt(b^2-4*a*c))/(2*a)
Otherwise your solutions are only valid for a = 1.
Enter [3 5 2] as values for [A B C] and you'll get messed up results. Same for [2 5 2].