-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Add Jacobian field to StochSystem #28
Comments
Agreed, integration of ModelingToolkit and the possibility to hardcode the Jacobian of the drift should be included. |
A jacobian can be stored in |
probably worth coordinating creating the jacobian of a dynamic rule generically via an interface function. I do it on my own in How does |
Would be nice that
|
You can define
Oh, I didn't know that. THat is very useful. DynamicalSystems.jl already supports MTK-made models throughout. So we can add one more option so that if there is a symbolic Jacobian, it uses this one instead of making a forward-diff one. Easy to do via a PR if you are interested! |
In many algorithms one needs the jacobian of the drift field. These are now computed using ForwardDiff. Adding the the field
jacobian
toStochSystem
, makes it possible for the user to hardcode it or compute it symbolically using, e.g., ModeligToolkit.The text was updated successfully, but these errors were encountered: