write a matlab command to find th roots of: ax^2+bx+c=0
28 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ammaa AlSada
el 13 de En. de 2019
Comentada: Walter Roberson
el 15 de Abr. de 2022
write a MATLAB commads to find the roots of : ax^2+bx+c=0 , where a,b and c are constants?
0 comentarios
Respuesta aceptada
jahanzaib ahmad
el 13 de En. de 2019
Editada: madhan ravi
el 15 de En. de 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 comentario
jahanzaib ahmad
el 14 de En. de 2019
Editada: madhan ravi
el 15 de En. de 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);
Más respuestas (2)
madhan ravi
el 14 de En. de 2019
Editada: madhan ravi
el 14 de En. de 2019
help roots
doc roots
help poly2sym
doc poly2sym
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!