Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. clc, clear all, close
  2. s = tf('s');
  3. figure(1)
  4. G = (-2*s^2)/(4*s+2);
  5. bode(G), grid on;
  6.  
  7. figure(2)
  8. G = (-s+1)/(s^2+2*s+1);
  9. bode(G), grid on;
  10.  
  11. figure(3)
  12. G = (s^2+3*s-2)/(s^2+2*s);
  13. bode(G), grid on;
  14.  
  15. figure(4)
  16. G = (s^2+3*s-2)/(s^3+s^2);
  17. bode(G), grid on;
  18.  
  19. figure(5)
  20. G = (s^2-3*s+4)/(s^3+1);
  21. bode(G), grid on;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement