Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. wn=4;
  2. zeta=0.3;
  3. Ao=wn^2;
  4. Bo=[1 2*zeta*wn 0];
  5. Ac=wn^2;
  6. Bc=[1 2*zeta*wn wn^2];
  7. Go=tf(Ao,Bo);
  8. Gc=tf(Ac,Bc);
  9. figure(1)
  10. step(Go)
  11. grid;
  12. figure(2)
  13. step(Gc)
  14. grid;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement