Create list of singular-value plot options
P = sigmaoptions
P = sigmaoptions('cstprefs')
P = sigmaoptions returns a list of available
options for singular value plots with default values set. You can
use these options to customize the singular value plot appearance
from the command line.
P = sigmaoptions('cstprefs') initializes the plot options with the
options you selected in the Control System Toolbox™ Preferences Editor. For more information about the editor, see Toolbox Preferences Editor.
This table summarizes the sigma plot options.
| Option | Description |
|---|---|
| Title, XLabel, YLabel | Label text and style |
| TickLabel | Tick label style |
| Grid | Show or hide the grid Specified as one of the following: 'off' | 'on'Default: 'off' |
| GridColor | Color of the grid lines Specified as one of the following: Vector of RGB values in the range [0,1]|
color |'none'.Default: [0.15,0.15,0.15] |
| XlimMode, YlimMode | Limit modes |
| Xlim, Ylim | Axes limits |
| IOGrouping | Grouping of input-output pairs Specified as one of the following: 'none' |'inputs'|'outputs'|'all'Default: 'none' |
| InputLabels, OutputLabels | Input and output label styles |
| InputVisible, OutputVisible | Visibility of input and output channels |
| FreqUnits | Frequency units, specified as one of the following:
Default: You
can also specify |
| FreqScale | Frequency scale Specified as one of the following: 'linear' | 'log'Default: 'log' |
| MagUnits | Magnitude units Specified as one of the following: 'dB' | 'abs'Default: 'dB' |
| MagScale | Magnitude scale Specified as one of the following: 'linear' | 'log'Default: 'linear' |
In this example, set the frequency units to Hz before creating a plot.
P = sigmaoptions; % Set the frequency units to Hz in options P.FreqUnits = 'Hz'; % Create plot with the options specified by P h = sigmaplot(rss(2,2,3),P);
