How to find only negative root of any polynomial
Mostrar comentarios más antiguos
I am looking for a filter design. and from all possible roots of transfer function, i have to filter only left half s-plane (negative) roots. please suggest any code as "roots()" gives all +ve and _ve roots
Respuestas (2)
Azzi Abdelmalek
el 7 de Nov. de 2014
r=roots(your_array)
r=r(r<0))
Categorías
Más información sobre Polynomials en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!