Skip to content

Commit b1b3ad5

Browse files
committed
create _NamedIOSystem, _NamedIOStateSystem parent classes
1 parent 4c197ca commit b1b3ad5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

control/lti.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616
from numpy import absolute, real, angle, abs
1717
from warnings import warn
1818
from . import config
19+
from .namedio import _NamedIOSystem
1920

2021
__all__ = ['issiso', 'timebase', 'common_timebase', 'timebaseEqual',
2122
'isdtime', 'isctime', 'pole', 'zero', 'damp', 'evalfr',
2223
'freqresp', 'dcgain']
2324

24-
class LTI:
25+
class LTI(_NamedIOSystem):
2526
"""LTI is a parent class to linear time-invariant (LTI) system objects.
2627
2728
LTI is the parent to the StateSpace and TransferFunction child classes. It

0 commit comments

Comments
 (0)