Finding roots of symbolic expression
50 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aleem Andrew
el 3 de Nov. de 2021
Respondida: Walter Roberson
el 3 de Nov. de 2021
You cannot directly use the roots function to find the roots of a symbolic expression.
syms x
fx = x^2 + 2*x + 1
How do you find the roots of fx other than by typing the coefficients in an array?
0 comentarios
Respuesta aceptada
Walter Roberson
el 3 de Nov. de 2021
syms x
fx = x^2 + 2*x + 1
p = sym2poly(fx)
roots(double(p))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!