Control package: Difference between revisions

165 bytes added ,  16 June 2015
Line 4: Line 4:


=== PT1/low-pass filter step response ===
=== PT1/low-pass filter step response ===
 
<!-- {{SyntaxHighlight| -->
{{Code|Creating a transfer function and plotting its response|<syntaxhighlight lang="octave" style="font-size:13px">
  T1=0.4;              # time constant
  T1=0.4;              # time constant
  P=tf([1], [T1 1])    # create transfer function model
  P=tf([1], [T1 1])    # create transfer function model
Line 15: Line 16:
  plot ([0 T1],  [1-1/e 1-1/e],"m")
  plot ([0 T1],  [1-1/e 1-1/e],"m")
  hold off
  hold off
</syntaxhighlight>}}


[[File:Pt1.png|600px]]
[[File:Pt1.png|600px]]
657

edits