Skip to content

Commit

Permalink
add latex representation of statespace systems to establish notation
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Feb 26, 2024
1 parent 7748b78 commit 0d82540
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/src/man/creating_systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,21 @@ The transfer functions created using this method will be of type `TransferFuncti


## State-Space Systems
A state-space system is created using
A state-space system
```math
\begin{aligned}
\dot{x} &= Ax + Bu \\
y &= Cx + Du
\end{aligned}
```
in continuous time, or
```math
\begin{aligned}
x_{t+T_s} &= Ax_t + Bu_t \\
y_t &= Cx_t + Du_t
\end{aligned}
```
in discrete time, is created using
```julia
ss(A,B,C,D) # Continuous-time system
ss(A,B,C,D,Ts) # Discrete-time system
Expand Down

0 comments on commit 0d82540

Please sign in to comment.