| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Control System Toolbox |
| Contents | Index |
| Learn more about Control System Toolbox |
h = sigmaplot(sys)
sigmaplot(sys,{wmin,wmax})
sigmaplot(sys,w)
sigmaplot(sys,w,TYPE)
sigmaplot(AX,...)
sigmaplot(..., plotoptions)
h = sigmaplot(sys) produces a singular value (SV) plot of the frequency response of the LTI model sys (created with tf, zpk, ss, or frd). It also returns the plot handle h. You can use this handle to customize the plot with the getoptions and setoptions commands. Type
help sigmaoptions
for a list of available plot options.
The frequency range and number of points are chosen automatically. See bode for details on the notion of frequency in discrete time.
sigmaplot(sys,{wmin,wmax}) draws the SV plot for frequencies ranging between wmin and wmax (in rad/s).
sigmaplot(sys,w) uses the user-supplied vector w of frequencies, in rad/s, at which the frequency response is to be evaluated. See logspace to generate logarithmically spaced frequency vectors.
sigmaplot(sys,w,TYPE) or sigmaplot(sys,[],TYPE) draws the following modified SV plots depending on the value of TYPE:
| TYPE = 1 | --> | SV of inv(SYS) |
| TYPE = 2 | --> | SV of I + SYS |
| TYPE = 3 | --> | SV of I + inv(SYS) |
sys should be a square system when using this syntax.
sigmaplot(AX,...) plots into the axes with handle AX.
sigmaplot(..., plotoptions) plots the singular values with the options specified in plotoptions. Type
help sigmaoptions
for more details.
You can change the properties of your plot, for example the units. For information on the ways to change properties of your plots, see Ways to Customize Plots.
Use the plot handle to change the units to Hz.
sys = rss(5); h = sigmaplot(sys); % Change units to Hz. setoptions(h,'FreqUnits','Hz');
getoptions, setoptions, sigma, sigmaoptions
![]() | sigmaoptions | sisoinit | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |