From 5d572852cff0623646d3e183c8746dbe216bb52e Mon Sep 17 00:00:00 2001 From: Miroslav Fikar Date: Wed, 26 Jan 2022 11:38:37 +0100 Subject: [PATCH] fix in documentation of ss2tf --- control/xferfcn.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/control/xferfcn.py b/control/xferfcn.py index 856b421ef..fd859f675 100644 --- a/control/xferfcn.py +++ b/control/xferfcn.py @@ -1524,14 +1524,14 @@ def ss2tf(*args, **kwargs): The function accepts either 1 or 4 parameters: ``ss2tf(sys)`` - Convert a linear system into space system form. Always creates a - new system, even if sys is already a StateSpace object. + Convert a linear system from state space into transfer function form. Always creates a + new system. ``ss2tf(A, B, C, D)`` - Create a state space system from the matrices of its state and + Create a transfer function system from the matrices of its state and output equations. - For details see: :func:`ss` + For details see: :func:`tf` Parameters ----------