Skip to content

Commit 0bde571

Browse files
committed
add documentation for continuous vs discrete find_eqpt computation
1 parent 5d0b3d0 commit 0bde571

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

control/iosys.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1994,6 +1994,14 @@ def find_eqpt(sys, x0, u0=None, y0=None, t=0, params=None,
19941994
If `return_result` is True, returns the `result` from the
19951995
:func:`scipy.optimize.root` function.
19961996
1997+
Notes
1998+
-----
1999+
For continuous time systems, equilibrium points are defined as points for
2000+
which the right hand side of the differential equation is zero:
2001+
:math:`f(t, x_e, u_e) = 0`. For discrete time systems, equilibrium points
2002+
are defined as points for which the right hand side of the difference
2003+
equation returns the current state: :math:`f(t, x_e, u_e) = x_e`.
2004+
19972005
"""
19982006
from scipy.optimize import root
19992007

0 commit comments

Comments
 (0)