File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2273,7 +2273,7 @@ def _find_size(sysval, vecval):
2273
2273
2274
2274
# Define a state space object that is an I/O system
2275
2275
def ss (* args , ** kwargs ):
2276
- """ss(A, B, C, D[, dt])
2276
+ r """ss(A, B, C, D[, dt])
2277
2277
2278
2278
Create a state space system.
2279
2279
@@ -2293,18 +2293,18 @@ def ss(*args, **kwargs):
2293
2293
output equations:
2294
2294
2295
2295
.. math::
2296
- \\ dot x = A \\ cdot x + B \\ cdot u
2297
2296
2298
- y = C \\ cdot x + D \\ cdot u
2297
+ dx/dt &= A x + B u \\
2298
+ y &= C x + D u
2299
2299
2300
2300
``ss(A, B, C, D, dt)``
2301
2301
Create a discrete-time state space system from the matrices of
2302
2302
its state and output equations:
2303
2303
2304
2304
.. math::
2305
- x[k+1] = A \\ cdot x[k] + B \\ cdot u[k]
2306
2305
2307
- y[k] = C \\ cdot x[k] + D \\ cdot u[ki]
2306
+ x[k+1] &= A x[k] + B u[k] \\
2307
+ y[k] &= C x[k] + D u[k]
2308
2308
2309
2309
The matrices can be given as *array like* data types or strings.
2310
2310
Everything that the constructor of :class:`numpy.matrix` accepts is
You can’t perform that action at this time.
0 commit comments