Skip to content

Instantly share code, notes, and snippets.

@ij96
Created January 20, 2018 17:06
Show Gist options
  • Select an option

  • Save ij96/f12a972ce58af9a4237ff7b1f991aa64 to your computer and use it in GitHub Desktop.

Select an option

Save ij96/f12a972ce58af9a4237ff7b1f991aa64 to your computer and use it in GitHub Desktop.
transfer function Bode + Nyquist
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