From: <mur...@us...> - 2012-11-03 23:01:33
|
Revision: 228 http://sourceforge.net/p/python-control/code/228 Author: murrayrm Date: 2012-11-03 23:01:31 +0000 (Sat, 03 Nov 2012) Log Message: ----------- missed a file... Added Paths: ----------- tags/control-0.6c/doc/creation.rst trunk/doc/creation.rst Added: tags/control-0.6c/doc/creation.rst =================================================================== --- tags/control-0.6c/doc/creation.rst (rev 0) +++ tags/control-0.6c/doc/creation.rst 2012-11-03 23:01:31 UTC (rev 228) @@ -0,0 +1,33 @@ +Creating System Models +********************** + +Python-control provides a number of methods for creating LTI control +systems. + +.. module:: control +========================== ============================================ +:func:`ss` create state-space (SS) models +:func:`tf` create transfer function (TF) models +========================== ============================================ + +System creation +================ +.. autofunction:: control.StateSpace +.. autofunction:: control.ss +.. autofunction:: control.TransferFunction +.. autofunction:: control.tf + +Utility functions and converstions +================================== +.. autofunction:: control.drss +.. autofunction:: control.isctime +.. autofunction:: control.isdtime +.. autofunction:: control.issys +.. autofunction:: control.pade +.. autofunction:: control.sample_system +.. autofunction:: control.ss2tf +.. autofunction:: control.ssdata +.. autofunction:: control.tf2ss +.. autofunction:: control.tfdata +.. autofunction:: control.timebase +.. autofunction:: control.timebaseEqual Added: trunk/doc/creation.rst =================================================================== --- trunk/doc/creation.rst (rev 0) +++ trunk/doc/creation.rst 2012-11-03 23:01:31 UTC (rev 228) @@ -0,0 +1,33 @@ +Creating System Models +********************** + +Python-control provides a number of methods for creating LTI control +systems. + +.. module:: control +========================== ============================================ +:func:`ss` create state-space (SS) models +:func:`tf` create transfer function (TF) models +========================== ============================================ + +System creation +================ +.. autofunction:: control.StateSpace +.. autofunction:: control.ss +.. autofunction:: control.TransferFunction +.. autofunction:: control.tf + +Utility functions and converstions +================================== +.. autofunction:: control.drss +.. autofunction:: control.isctime +.. autofunction:: control.isdtime +.. autofunction:: control.issys +.. autofunction:: control.pade +.. autofunction:: control.sample_system +.. autofunction:: control.ss2tf +.. autofunction:: control.ssdata +.. autofunction:: control.tf2ss +.. autofunction:: control.tfdata +.. autofunction:: control.timebase +.. autofunction:: control.timebaseEqual |