sigma function plot of an unstable system
Show older comments
I encountered the following problem when I applied the sigma function to plot the frequency response of a system.
clear all
s = tf('s');
n = 3;
D1 = [0;0;0.1];
C = [-0.1 0.1 0.2; 0.4 0.01 0; 0.1 0.21 0.1]; D2 = [0; 0.1; 0];
A = eye(n);
H = ( s*eye(n) - A )^(-1);
H = C*H*D1 + D2;
sigma(H)
The system considered here is clearly unstable. However, sigma() function returned finite values in its plot. Could somebody tell me where it went wrong here ?
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!