Analyzing the Stability of Closed-Loop Systems Using MATLAB Root-Finding Method

First, write out the expression for the closed-loop function to obtain the polynomial of the denominator. Calculate the roots of the denominator polynomial; if all roots have real parts less than 0, the system is stable; otherwise, the system is unstable. % Root-finding method to analyze system stability % roots(p); % pole(G); % eig(G); % … Read more