want to get only all positive real roots
43 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Compute all positive real roots of x^4 + 2*x^3 − 7*x^2 + 3 = 0.
I want to discard all the imaginary ones and keep only the positive real root only
Can someone please guide me on that???
1 comentario
Steven Lord
el 22 de Abr. de 2019
Show us what you've written so far and we may be able to suggest how to modify your code to return the positive real roots.
Respuestas (1)
Raj
el 23 de Abr. de 2019
Editada: Raj
el 23 de Abr. de 2019
Use this:
p=[1 2 -7 0 3] % Your Polynomial equation coefficients matrix
A=roots(p) % All roots of equation
B=A(A>=0) % Only positive real roots of equation
This will be a useful read.
4 comentarios
Walter Roberson
el 23 de Abr. de 2019
Looks like this particular equation has only real roots, two negative and two postive.
Dokeun Hwang
el 22 de Mayo de 2021
Editada: Dokeun Hwang
el 22 de Mayo de 2021
The answer above gives all the real parts in the roots
So, it should be corrected as below
B=A(real(A)>0&imag(A)==0);
ref: https://kr.mathworks.com/matlabcentral/answers/89612-how-to-select-real-positive-number
Ver también
Categorías
Más información sobre Numerical Integration and Differential Equations 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!