Skip to content

Commit 0d82540

Browse files
committed
add latex representation of statespace systems to establish notation
1 parent 7748b78 commit 0d82540

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/src/man/creating_systems.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,21 @@ The transfer functions created using this method will be of type `TransferFuncti
8484

8585

8686
## State-Space Systems
87-
A state-space system is created using
87+
A state-space system
88+
```math
89+
\begin{aligned}
90+
\dot{x} &= Ax + Bu \\
91+
y &= Cx + Du
92+
\end{aligned}
93+
```
94+
in continuous time, or
95+
```math
96+
\begin{aligned}
97+
x_{t+T_s} &= Ax_t + Bu_t \\
98+
y_t &= Cx_t + Du_t
99+
\end{aligned}
100+
```
101+
in discrete time, is created using
88102
```julia
89103
ss(A,B,C,D) # Continuous-time system
90104
ss(A,B,C,D,Ts) # Discrete-time system

0 commit comments

Comments
 (0)