File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -801,15 +801,17 @@ def returnScipySignalLTI(self, strict=True):
801
801
----------
802
802
strict : bool, optional
803
803
True (default):
804
- `ssobject` must be continuous or discrete. `tfobject .dt` cannot
805
- be None .
804
+ The timebase `ssobject .dt` cannot be None; it must
805
+ be continuous (0) or discrete (True or > 0) .
806
806
False:
807
- if `ssobject.dt` is None, continuous time signal.StateSpace
808
- objects are returned
807
+ If `ssobject.dt` is None, continuous time scipy. signal.lti
808
+ objects are returned.
809
809
810
810
Returns
811
811
-------
812
812
out : list of list of scipy.signal.StateSpace
813
+ continuous time (inheriting from scipy.signal.lti)
814
+ or discrete time (inheriting from scipy.signal.dlti) SISO objects
813
815
"""
814
816
if strict and self .dt is None :
815
817
raise ValueError ("with strict=True, dt cannot be None" )
Original file line number Diff line number Diff line change @@ -803,7 +803,7 @@ def minreal(self, tol=None):
803
803
return TransferFunction (num , den , self .dt )
804
804
805
805
def returnScipySignalLTI (self , strict = True ):
806
- """Return a list of a list of scipy.signal.lti objects.
806
+ """Return a list of a list of SISO scipy.signal.lti objects.
807
807
808
808
For instance,
809
809
@@ -817,15 +817,17 @@ def returnScipySignalLTI(self, strict=True):
817
817
----------
818
818
strict : bool, optional
819
819
True (default):
820
- `tfobject` must be continuous or discrete.
821
- `tfobject.dt`cannot be None .
820
+ The timebase `tfobject.dt` cannot be None; it must be
821
+ continuous (0) or discrete (True or > 0) .
822
822
False:
823
- if `tfobject.dt` is None, continuous time signal.TransferFunction
824
- objects are is returned
823
+ if `tfobject.dt` is None, continuous time scipy. signal.lti
824
+ objects are returned
825
825
826
826
Returns
827
827
-------
828
828
out : list of list of scipy.signal.TransferFunction
829
+ continuous time (inheriting from scipy.signal.lti)
830
+ or discrete time (inheriting from scipy.signal.dlti) SISO objects
829
831
"""
830
832
if strict and self .dt is None :
831
833
raise ValueError ("with strict=True, dt cannot be None" )
You can’t perform that action at this time.
0 commit comments