Skip to content

Doc remove linear io system #922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions control/nlsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -1877,8 +1877,8 @@ def linearize(sys, xeq, ueq=None, t=0, params=None, **kw):
Returns
-------
ss_sys : StateSpace
The linearization of the system, as a :class:`~control.LinearIOSystem`
object (which is also a :class:`~control.StateSpace` object.
The linearization of the system, as a :class:`~control.StateSpace`
object.

Other Parameters
----------------
Expand Down Expand Up @@ -1924,7 +1924,7 @@ def interconnect(

This function creates a new system that is an interconnection of a set of
input/output systems. If all of the input systems are linear I/O systems
(type :class:`~control.LinearIOSystem`) then the resulting system will be
(type :class:`~control.StateSpace`) then the resulting system will be
a linear interconnected I/O system (type :class:`~control.LinearICSystem`)
with the appropriate inputs, outputs, and states. Otherwise, an
interconnected I/O system (type :class:`~control.InterconnectedSystem`)
Expand Down
Loading