Created
January 20, 2018 17:06
-
-
Save ij96/f12a972ce58af9a4237ff7b1f991aa64 to your computer and use it in GitHub Desktop.
transfer function Bode + Nyquist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| close all; | |
| num = [0 0 0 0.35]; | |
| den = [1 1.5 0.75 0.125]; | |
| H = tf(num,den) | |
| figure; | |
| bode(H); | |
| figure; | |
| nyquist(H); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment