100% found this document useful (1 vote)
176 views

Generate S-Plane Grid of Constant Damping Factors and Natural Frequencies - MATLAB Sgrid - MathWorks India

sgrid generates a grid of constant damping factors from 0 to 1 in steps of 0.1 and natural frequencies from 0 to 10 rad/sec in steps of 1 rad/sec on an s-plane. It can plot this grid over existing pole-zero or root locus plots. sgrid(z,wn) allows customizing the grid using damping factor and natural frequency vectors. The sgrid command adds a reference grid to s-plane plots for analysis.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
176 views

Generate S-Plane Grid of Constant Damping Factors and Natural Frequencies - MATLAB Sgrid - MathWorks India

sgrid generates a grid of constant damping factors from 0 to 1 in steps of 0.1 and natural frequencies from 0 to 10 rad/sec in steps of 1 rad/sec on an s-plane. It can plot this grid over existing pole-zero or root locus plots. sgrid(z,wn) allows customizing the grid using damping factor and natural frequency vectors. The sgrid command adds a reference grid to s-plane plots for analysis.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

sgrid

Generate s-plane grid of constant damping factors and natural frequencies

Syntax
sgrid
sgrid(z,wn)

Description
sgrid generates, for pole-zero and root locus plots, a grid of constant damping factors from zero to one in steps of
0.1 and natural frequencies from zero to 10 rad/sec in steps of one rad/sec, and plots the grid over the current axis.
If the current axis contains a continuous s-plane root locus diagram or pole-zero map, sgriddraws the grid over
the plot.

sgrid(z,wn) plots a grid of constant damping factor and natural frequency lines for the damping factors and
natural frequencies in the vectors zand wn, respectively. If the current axis contains a continuous s-plane root
locus diagram or pole-zero map, sgrid(z,wn)draws the grid over the plot.

Alternatively, you can select Grid from the right-click menu to generate the same s-plane grid.

Examples collapse all

 Generate S-Plane Grid on Root Locus Plot

Create the following continuous-time transfer function:


Open Script

H = tf([2 5 1],[1 2 3]);

Plot the root locus of the transfer function.

rlocus(H)
Plot s-plane grid lines on the root locus.

sgrid
See Also
pzmap| rlocus| zgrid

Introduced before R2006a

You might also like