Skip to content

Commit b025c2a

Browse files
committed
add note on MIMO
1 parent 1787cf7 commit b025c2a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ julia> latextf(G)
7171
## Code generation
7272
The function `code = SymbolicControlSystems.ccode(G::LTISystem)` returns a string with C-code for filtering of a signal through the linear system `G`. All symbolic variables present in `G` will be expected as inputs to the generated function. The transfer-function state is handled by the C concept of `static` variables, i.e., a variable that remembers it's value since the last function invocation. The signature of the generated function `transfer_function` expects all input arguments in alphabetical order, except for the input `u` which always comes first.
7373

74+
Code generation for systems with multiple inputs and outputs (MIMO) is only handled for statespace systems, call `ss(G)` to convert a transfer function to a statespace system.
75+
7476

7577
A usage example follows
7678
```julia

0 commit comments

Comments
 (0)