We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 model
but the system is unchanged. Is there a better way to go about this?
The text was updated successfully, but these errors were encountered:
You'd have to operate on the matrix entries individually, we have no support for this right now.
Sorry, something went wrong.
No branches or pull requests
I am trying so substitute a variable inside a StateSpace{Continous,Num}.
but the system is unchanged. Is there a better way to go about this?
The text was updated successfully, but these errors were encountered: