Skip to content

Commit 388fc34

Browse files
committed
DOC: use double backlash for math in docstrings
1 parent 2811e75 commit 388fc34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

control/statesp.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,18 +1078,18 @@ def ss(*args):
10781078
output equations:
10791079
10801080
.. math::
1081-
\dot x = A \cdot x + B \cdot u
1081+
\\dot x = A \\cdot x + B \\cdot u
10821082
1083-
y = C \cdot x + D \cdot u
1083+
y = C \\cdot x + D \\cdot u
10841084
10851085
``ss(A, B, C, D, dt)``
10861086
Create a discrete-time state space system from the matrices of
10871087
its state and output equations:
10881088
10891089
.. math::
1090-
x[k+1] = A \cdot x[k] + B \cdot u[k]
1090+
x[k+1] = A \\cdot x[k] + B \\cdot u[k]
10911091
1092-
y[k] = C \cdot x[k] + D \cdot u[ki]
1092+
y[k] = C \\cdot x[k] + D \\cdot u[ki]
10931093
10941094
The matrices can be given as *array like* data types or strings.
10951095
Everything that the constructor of :class:`numpy.matrix` accepts is

0 commit comments

Comments
 (0)