We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2042231 commit 8e01958Copy full SHA for 8e01958
control/xferfcn.py
@@ -90,6 +90,14 @@ class TransferFunction(LTI):
90
are combined. If 'dt' is set to True, the system will be treated as a
91
discrete time system with unspecified sampling time.
92
93
+ The TransferFunction class defines two constants ``s`` and ``z`` that
94
+ represent the differentiation and delay operators in continuous and
95
+ discrete time. These can be used to create variables that allow algebraic
96
+ creation of transfer functions. For example,
97
+
98
+ >>> s = TransferFunction.s
99
+ >>> G = (s + 1)/(s**2 + 2*s + 1)
100
101
"""
102
def __init__(self, *args):
103
"""TransferFunction(num, den[, dt])
0 commit comments