Real solutions to a polynomial
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am stuck to this task: I am trying only to get the real solutions to the function
A = [1 -12 55 -120 124 -80]
B = roots(A)
4 comentarios
Respuestas (1)
Walter Roberson
el 24 de Abr. de 2021
A = randi([-9 9], 1, 6)
B = roots(A)
B(imag(B)==0)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!