You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For ...ContinuousSytem and ...DiscreteSystem we've been implementing approach 1.
I like approach 2 because it is more general. At the same time, it has less structure, because it does not speak about "constraint on what" (state or input).
The text was updated successfully, but these errors were encountered:
The
src/maps.jl
defines a bunch of structures that subtypeAbstractMap
. As you can see in the table below, we are missing several combinations.Here are two approaches to complete the table:
Add all the missing combinations one by one, e.g.
ConstrainedLinearMap
forx -> Ax
with constraints onx
, etc.Add a new struct by composition, defining maps with constraints, like:
For
...ContinuousSytem
and...DiscreteSystem
we've been implementing approach 1.I like approach 2 because it is more general. At the same time, it has less structure, because it does not speak about "constraint on what" (state or input).
The text was updated successfully, but these errors were encountered: