Azzera filtri
Azzera filtri

Checking the stability of an LTI system

7 visualizzazioni (ultimi 30 giorni)
Anna Eteläaho
Anna Eteläaho il 18 Lug 2011
How can I check with Simulink whether an LTI system is stable? The transfer function is (1-(a^-1)z^-1)/(1-az^-1), where a is some real number. I need to check which values of "a" make the system stable.

Risposte (1)

Rick Rosson
Rick Rosson il 18 Lug 2011
The transfer function has a single pole at z = a. To ensure stability, all poles must be located inside the unit circle in the z-plane. Therefore, to ensure stability, you need to ensure only that the magnitude of a is strictly less than 1:
stable = (abs(a) < 1);
if stable
fprintf('The system is stable.\n');
else
fprintf('WARNING: The system is NOT stable.\n');
end
HTH.
Rick

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by