mor.sigmaDamp

Main interface for maximal Sigma and damping map plot.

Syntax

mor.sigmaDamp(sys,W)
mor.sigmaDamp(sys,color,W)

Description

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

mor.sigmaDamp(sys,color,W) plots sys with color color.

Input arguments

sys Dynamical system or input-output data. More specifically sys can either be
  • a state-space ODE (DAE) realization described as sys = ss(A,B,C,D) (or sys = dss(A,B,C,D,E))
  • a matrix set describing an ODE (or DAE) described as sys = {A,B,C,D} (or sys = {A,B,C,D,E})
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).

Output arguments

none

Examples

% 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.