Skip to content

Commit 3165881

Browse files
authored
fix misprint
1 parent f514f7c commit 3165881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

control/xferfcn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def __truediv__(self, other):
723723
"""Divide two LTI objects."""
724724

725725
if isinstance(other, (int, float, complex, np.number)):
726-
# Multiply by a scaled identify matrix (transfer function)
726+
# Multiply by a scaled identity matrix (transfer function)
727727
other = _convert_to_transfer_function(np.eye(self.ninputs) * other)
728728
else:
729729
other = _convert_to_transfer_function(other)

0 commit comments

Comments
 (0)