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
Does MTK expose some functionality that can be used to obtain a map from every variable in a system to the equation that determines it? Is this stored or computed internally somewhere?
For example, for a system like
vars =@variablesx(t) y(t) z(t)
@sys=ODESystem([
D(x) ~0# determines unknown x
x^2+ y^2~5^2# determines unknown y
z ~ x + y # determines observed z
], t, vars, [])
I am looking for something like
var2eq =Dict(
x =>D(x) ~0
y => x^2+ y^2~25
z => x + y
)
Nonlinear algebraic equations is not a must; I guess it makes no sense if there are more than one, anyway.
I found Dependency Graphs in the documentation, but it doesn't mention exactly what I am looking for (if I read it correctly).
The text was updated successfully, but these errors were encountered:
Does MTK expose some functionality that can be used to obtain a map from every variable in a system to the equation that determines it? Is this stored or computed internally somewhere?
For example, for a system like
I am looking for something like
Nonlinear algebraic equations is not a must; I guess it makes no sense if there are more than one, anyway.
I found Dependency Graphs in the documentation, but it doesn't mention exactly what I am looking for (if I read it correctly).
The text was updated successfully, but these errors were encountered: