8888from . import margins
8989from .statesp import StateSpace , _rss_generate , _convertToStateSpace
9090from .xferfcn import TransferFunction , _convertToTransferFunction
91- from .lti import Lti # base class of StateSpace, TransferFunction
91+ from .lti import LTI # base class of StateSpace, TransferFunction
9292from .lti import issiso
9393from .frdata import FRD
9494from .dtime import sample_system
@@ -513,7 +513,7 @@ def tf(*args):
513513
514514 Parameters
515515 ----------
516- sys: Lti (StateSpace or TransferFunction)
516+ sys: LTI (StateSpace or TransferFunction)
517517 A linear system
518518 num: array_like, or list of list of array_like
519519 Polynomial coefficients of the numerator
@@ -597,7 +597,7 @@ def frd(*args):
597597 complex response vector, at matching frequency freqs [in rad/s]
598598
599599 ``frd(sys, freqs)``
600- Convert an Lti system into an frd model with data at frequencies
600+ Convert an LTI system into an frd model with data at frequencies
601601 freqs.
602602
603603 Parameters
@@ -606,7 +606,7 @@ def frd(*args):
606606 complex vector with the system response
607607 freq: array_lik or lis
608608 vector with frequencies
609- sys: Lti (StateSpace or TransferFunction)
609+ sys: LTI (StateSpace or TransferFunction)
610610 A linear system
611611
612612 Returns
@@ -714,7 +714,7 @@ def tf2ss(*args):
714714
715715 Parameters
716716 ----------
717- sys: Lti (StateSpace or TransferFunction)
717+ sys: LTI (StateSpace or TransferFunction)
718718 A linear system
719719 num: array_like, or list of list of array_like
720720 Polynomial coefficients of the numerator
@@ -1008,7 +1008,7 @@ def bode(*args, **keywords):
10081008
10091009 Parameters
10101010 ----------
1011- sys : Lti , or list of Lti
1011+ sys : LTI , or list of LTI
10121012 System for which the Bode response is plotted and give. Optionally
10131013 a list of systems can be entered, or several systems can be
10141014 specified (i.e. several parameters). The sys arguments may also be
@@ -1190,7 +1190,7 @@ def dcgain(*args):
11901190 A linear system in zero, pole, gain form.
11911191 num, den: array-like
11921192 A linear system in transfer function form.
1193- sys: Lti (StateSpace or TransferFunction)
1193+ sys: LTI (StateSpace or TransferFunction)
11941194 A linear system object.
11951195
11961196 Returns
@@ -1238,7 +1238,7 @@ def damp(sys, doprint=True):
12381238
12391239 Parameters
12401240 ----------
1241- sys: Lti (StateSpace or TransferFunction)
1241+ sys: LTI (StateSpace or TransferFunction)
12421242 A linear system object
12431243 doprint:
12441244 if true, print table with values
@@ -1421,7 +1421,7 @@ def lsim(sys, U=0., T=None, X0=0.):
14211421
14221422 Parameters
14231423 ----------
1424- sys: Lti (StateSpace, or TransferFunction)
1424+ sys: LTI (StateSpace, or TransferFunction)
14251425 LTI system to simulate
14261426
14271427 U: array-like or number, optional
@@ -1464,7 +1464,7 @@ def ssdata(sys):
14641464
14651465 Parameters
14661466 ----------
1467- sys: Lti (StateSpace, or TransferFunction)
1467+ sys: LTI (StateSpace, or TransferFunction)
14681468 LTI system whose data will be returned
14691469
14701470 Returns
@@ -1482,7 +1482,7 @@ def tfdata(sys):
14821482
14831483 Parameters
14841484 ----------
1485- sys: Lti (StateSpace, or TransferFunction)
1485+ sys: LTI (StateSpace, or TransferFunction)
14861486 LTI system whose data will be returned
14871487
14881488 Returns
@@ -1501,7 +1501,7 @@ def c2d(sysc, Ts, method='zoh'):
15011501
15021502 Parameters
15031503 ----------
1504- sysc: Lti (StateSpace or TransferFunction), continuous
1504+ sysc: LTI (StateSpace or TransferFunction), continuous
15051505 System to be converted
15061506
15071507 Ts: number
0 commit comments