write a matlab command to find th roots of: ax^2+bx+c=0

29 Ansichten (letzte 30 Tage)
write a MATLAB commads to find the roots of : ax^2+bx+c=0 , where a,b and c are constants?

Akzeptierte Antwort

jahanzaib ahmad
jahanzaib ahmad am 13 Jan. 2019
Bearbeitet: madhan ravi am 15 Jan. 2019
a=1;
b=2;
c=3;
x1 = -b +(sqrt((b^2)-(4ac)/(2a))x;
x2=-b-(sqrt((b^2)-(4ac)/(2a));
disp(x1);
disp(x2);
  1 Kommentar
jahanzaib ahmad
jahanzaib ahmad am 14 Jan. 2019
Bearbeitet: madhan ravi am 15 Jan. 2019
a=1;
b=2;
c=3;
x1 = -b +(sqrt((b.^2)-(4.*a.*c)))/(2.*a);
x2=-b -(sqrt((b.^2)-(4.*a.*c)))/(2.*a);
disp(x1);
disp(x2);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

madhan ravi
madhan ravi am 14 Jan. 2019
Bearbeitet: madhan ravi am 14 Jan. 2019
help roots
doc roots
help poly2sym
doc poly2sym

Abu Samad
Abu Samad am 15 Apr. 2022
ax^2+bx+c=0 where abc[1,-3,2]

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by