Quadratic equation & Minus B
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do I solve the quadratic equation ax^2+bx+c=0 using the minus b formula, x=-b+- sqrt b^2-4ac/2a on MATLAB
Thank you
3 Commenti
James Tursa
il 15 Mag 2019
To read coefficients from the keyboard, you could use the input function
To see if a number is real, you could use the isreal function
Risposta accettata
kirti singh
il 16 Mag 2019
The following example code snippet works for accepting the coefficients a,b and c and calculating the roots and finding if they are real or not:
a1 = 'Enter value of a ';
a = input(a1)
b1= 'Enter value of b ';
b = input(b1)
c1= 'Enter value of c ';
c = input(c1)
x1 = (-b + sqrt(b^2 - (4 * a * c))) / (2 * a);
x2 = (-b - sqrt(b^2 - (4 * a * c))) / (2 * a);
t1=isreal(x1);
t2=isreal(x2);
1 Commento
Più risposte (1)
Pavi thra
il 28 Ott 2020
a1 = 'Enter value of a ';
a = input(a1)
b1= 'Enter value of b ';
b = input(b1)
c1= 'Enter value of c ';
c = input(c1)
x1 = (-b + sqrt(b^2 - (4 * a * c))) / (2 * a);
x2 = (-b - sqrt(b^2 - (4 * a * c))) / (2 * a);
t1=isreal(x1);
t2=isreal(x2);
0 Commenti
Vedere anche
Categorie
Scopri di più su Measurements and Spatial Audio in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!