how would i type in my fraction in the polynomial to find my real and complex roots
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
adriana resendez
am 6 Mär. 2015
Beantwortet: Star Strider
am 6 Mär. 2015
fx = x^5-((x^4)/2)-2x^3-x^2-3
roots = fx
0 Kommentare
Akzeptierte Antwort
Star Strider
am 6 Mär. 2015
I expanded your function in the Symbolic Math Toolbox, and got the coefficient vector:
cfx = [1 -0.5 -2 -1 0 -3];
fxroots = roots(cfx)
produces:
fxroots =
1.9710e+000 + i
-1.1131e+000 +654.8187e-003i
-1.1131e+000 -654.8187e-003i
377.6052e-003 +877.5463e-003i
377.6052e-003 -877.5463e-003i
Note that the first root is real. It should be simply 1.9710, but since the others are complex, it is listed with a complex part for consistency. You could do all of this in the Symbolic Math Toolbox of course, but since you didn’t mention that you have access to it, I do not assume you do.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!