Skip to content

Commit 0b3ae85

Browse files
committed
set names of ct.s and ct.z to 's' and 'z'
1 parent fc19cd6 commit 0b3ae85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

control/xferfcn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1889,8 +1889,8 @@ def _clean_part(data):
18891889

18901890

18911891
# Define constants to represent differentiation, unit delay
1892-
TransferFunction.s = TransferFunction([1, 0], [1], 0)
1893-
TransferFunction.z = TransferFunction([1, 0], [1], True)
1892+
TransferFunction.s = TransferFunction([1, 0], [1], 0, name='s')
1893+
TransferFunction.z = TransferFunction([1, 0], [1], True, name='z')
18941894

18951895

18961896
def _float2str(value):

0 commit comments

Comments
 (0)