Skip to content

Instantly share code, notes, and snippets.

Created October 28, 2017 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e9d4f9483ee7fe02bc7a3e2ea9793b78 to your computer and use it in GitHub Desktop.
Save anonymous/e9d4f9483ee7fe02bc7a3e2ea9793b78 to your computer and use it in GitHub Desktop.
>> H1 = tf([(1e3*1e-6)],[1 (1e3*1e-6)])
H1 =
0.001
---------
s + 0.001
Continuous-time transfer function.
>> H2 = tf([1 0],[1 (1e3*1e-6)])
H2 =
s
---------
s + 0.001
Continuous-time transfer function.
>> figure(1)
>> bode(H1)
>> grid
>> figure(2)
>> bode(H2)
>> grid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment