home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 7.ddi / ROBUST.DI$ / DINTPLT.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  605 b   |  44 lines

  1. %
  2. %  DINTPLT.M : plot the SV Bode plot
  3. %
  4.  
  5. % R. Y. Chiang & M. G. Safonov 
  6. % Copyright (c) 1988 by the MathWorks, Inc.
  7. % All Rights Reserved.
  8.  
  9. clg
  10. subplot(221)
  11. semilogx(w,svtt(1,:))
  12. grid
  13. title('Cost Function: Ty1u1 ')
  14. xlabel('Rad/Sec')
  15. ylabel('db')
  16. %
  17. subplot(222)
  18. semilogx(w,svw1i,w,svs);
  19. grid
  20. title('1/W1 & S');
  21. xlabel('Rad/Sec');
  22. ylabel('db');
  23. %
  24. subplot(223)
  25. semilogx(w,svw3i,w,svt);
  26. grid
  27. title('1/W3 & T');
  28. xlabel('Rad/Sec')
  29. ylabel('db')
  30. %
  31. subplot(224)
  32. plot(t,y)
  33. grid
  34. title('Step Response')
  35. xlabel('sec')
  36. pause
  37. %
  38. % -------- End of DINTPLT.M --- RYC/MGS %
  39.  
  40.  
  41.  
  42.  
  43.  
  44.