We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2811e75 commit 388fc34Copy full SHA for 388fc34
1 file changed
control/statesp.py
@@ -1078,18 +1078,18 @@ def ss(*args):
1078
output equations:
1079
1080
.. math::
1081
- \dot x = A \cdot x + B \cdot u
+ \\dot x = A \\cdot x + B \\cdot u
1082
1083
- y = C \cdot x + D \cdot u
+ y = C \\cdot x + D \\cdot u
1084
1085
``ss(A, B, C, D, dt)``
1086
Create a discrete-time state space system from the matrices of
1087
its state and output equations:
1088
1089
1090
- x[k+1] = A \cdot x[k] + B \cdot u[k]
+ x[k+1] = A \\cdot x[k] + B \\cdot u[k]
1091
1092
- y[k] = C \cdot x[k] + D \cdot u[ki]
+ y[k] = C \\cdot x[k] + D \\cdot u[ki]
1093
1094
The matrices can be given as *array like* data types or strings.
1095
Everything that the constructor of :class:`numpy.matrix` accepts is
0 commit comments