Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. % D i matlab
  2. % diff(y)
  3. % help dif
  4.  
  5. s = tf('s')
  6. C=-10;
  7. G1 = (0.3*C) / (s^2 + 1.5*s+0.3*C);
  8.  
  9. [y, t] = step(G1);
  10. plot(t, y);
  11. figure;
  12. [y, t] = impulse(G1);
  13. plot(t,y);
Add Comment
Please, Sign In to add comment