mor.sigmaDamp
Main interface for maximal Sigma and damping map plot.
mor.sigmaDamp(sys,W)
mor.sigmaDamp(sys,color,W)
mor.sigmaDamp(sys,W)
plots the maximal Sigma diagram and the associated damping map of sys
over the frequencies defined by the vector W
. The plot shows the frequency response and related eigenvalues frequencies and damping, as a function of their associated residue. Black crosses gives the unstable modes. The input sys
can either be
sys = ss(A,B,C,D)
(or sys = dss(A,B,C,D,E)
) sys = {A,B,C,D}
(or sys = {A,B,C,D,E}
)mor.sigmaDamp(sys,color,W)
plots sys
with color color
.sys | Dynamical system or input-output data. More specifically sys can either be
|
color | Color in a string tag or a RGB vector. |
W | Vector of frequencies, in rad/s, over which the system's frequency responses are evaluated (positive real vector). |
none |
% Sigma plot and damping from state-space
rng(120882,'twister');
G = rss(300,1,2)+tf({1 -9},[1 -.002 1]);
W = logspace(-1,2,300);
figure
mor.sigmaDamp(G,W)
The above script generates the following figure, where the up frame represents the maximal sigma plot of the model and the down frame illustrates the eigenevalues equivalent frequency and damping values. The color are function of residue value associated with the eigenvalue. It reveals somehow the importance of the eigenvalue.