-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
I am trying so substitute a variable inside a StateSpace{Continous,Num}.
julia> Σᵤ
StateSpace{Continuous, Num}
A =
0 1 0
0 1 + k₁ 1 + k₂
kᵢ 1 + k₃ k₄
B =
0
1
0
C =
kᵢ 1 + k₁ + k₃ k₂ + k₄
D =
1
julia> substitute(Σᵤ, Dict( kᵢ=> -3))
StateSpace{Continuous, Num}
A =
0 1 0
0 1 + k₁ 1 + k₂
kᵢ 1 + k₃ k₄
B =
0
1
0
C =
kᵢ 1 + k₁ + k₃ k₂ + k₄
D =
1
Continuous-time state-space modelbut the system is unchanged. Is there a better way to go about this?
Metadata
Metadata
Assignees
Labels
No labels