Advertisement
Guest User

Drugi

a guest
Nov 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.33 KB | None | 0 0
  1. syms a, t, h, g
  2. g(t,a) = (36-6*a) * exp(-6*t) + (6*a -18) * exp(-3*t);
  3. h(t,a) = (a-6*a) * exp(-6*t) + (2*a - 6) * exp(-3*t);
  4.  
  5. % a = 6
  6. G = tf(18*[1 6],[1 9 18]);
  7. step(G)
  8.  
  9. % a = 3
  10. G = tf(18*[1 3],[1 9 18]);
  11. step(G)
  12.  
  13. % a = 1
  14. G = tf(18*[1 1],[1 9 18]);
  15. step(G)
  16.  
  17. % a = -1
  18. G = tf(18*[1 -1],[1 9 18]);
  19. step(G)
  20. pzmap(G)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement