write a matlab command to find th roots of: ax^2+bx+c=0
조회 수: 29 (최근 30일)
이전 댓글 표시
write a MATLAB commads to find the roots of : ax^2+bx+c=0 , where a,b and c are constants?
댓글 수: 0
채택된 답변
jahanzaib ahmad
2019년 1월 13일
편집: madhan ravi
2019년 1월 15일
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
jahanzaib ahmad
2019년 1월 14일
편집: madhan ravi
2019년 1월 15일
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);
추가 답변 (2개)
madhan ravi
2019년 1월 14일
편집: madhan ravi
2019년 1월 14일
help roots
doc roots
help poly2sym
doc poly2sym
댓글 수: 0
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!