Remove the polynomials that have positive real elements of their roots. - MATLAB Cody - MATLAB Central

Problem 85. Remove the polynomials that have positive real elements of their roots.

Difficulty:Rate
The characteristic equation for a dynamic system is a polynomial whose roots indicate its behavior. If any of the roots of the polynomial have a positive real part, the behavior of the system will be divergent. Given a cell array of vectors that represent polynomials, remove the ones that have roots with positive real components.
Example:
polyIn = {[1 1],[1 -1]}
polyOut = {[1 1]}
since roots([1 -1]) is 1, a positive number.

Solution Stats

61.79% Correct | 38.21% Incorrect
Last Solution submitted on Jan 14, 2025

Problem Comments

Solution Comments

Show comments
MATLAB Without Borders: Connecting your projects with Python and other Open Source Tools.
On 27th February María Elena Gavilán Alfonso and I will be giving...
0
6

Problem Recent Solvers1703

Suggested Problems

More from this Author96

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page