Advertisement
Ostu

Untitled

Mar 15th, 2021
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.39 KB | None | 0 0
  1. %% charakterystyki czestotliwosciowe
  2. figure(5)
  3. nyquist(obiekt)
  4. ylim([-0.9 0.9])
  5. xlim([-0.9 0.9])
  6. title 'Obiekt'
  7. figure(6)
  8. nyquist(modelkupf)
  9. ylim([-0.9 0.9])
  10. xlim([-0.9 0.9])
  11. title 'Model'
  12. figure(7)
  13. bode(obiekt)
  14. hold on
  15. bode(modelkupf)
  16. legend('Obiekt', 'Model')
  17. %% bieguny i zera
  18. figure(8)
  19. pzplot(obiekt)
  20. title 'Obiekt'
  21. xlim([-40 5])
  22. figure(9)
  23. pzplot(modelkupf)
  24. title 'Model'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement