home *** CD-ROM | disk | FTP | other *** search
- %
- % DINTPLT.M : plot the SV Bode plot
- %
-
- % R. Y. Chiang & M. G. Safonov
- % Copyright (c) 1988 by the MathWorks, Inc.
- % All Rights Reserved.
-
- clg
- subplot(221)
- semilogx(w,svtt(1,:))
- grid
- title('Cost Function: Ty1u1 ')
- xlabel('Rad/Sec')
- ylabel('db')
- %
- subplot(222)
- semilogx(w,svw1i,w,svs);
- grid
- title('1/W1 & S');
- xlabel('Rad/Sec');
- ylabel('db');
- %
- subplot(223)
- semilogx(w,svw3i,w,svt);
- grid
- title('1/W3 & T');
- xlabel('Rad/Sec')
- ylabel('db')
- %
- subplot(224)
- plot(t,y)
- grid
- title('Step Response')
- xlabel('sec')
- pause
- %
- % -------- End of DINTPLT.M --- RYC/MGS %
-
-
-
-
-
-