Variable precision arithmetic in ode45 and others?
Mostra commenti meno recenti
Is it possible to use vpa in ordinary differential equation solvers like ode45?
Risposta accettata
Più risposte (2)
John D'Errico
il 29 Ott 2020
0 voti
Short answer - no.
Long answer - nnnnoooooo.
ODE45 uses only singles or doubles. Nothing symbolic. vpa is a symbolic tool.
2 Commenti
Michael Croucher
il 29 Ott 2020
John D'Errico
il 29 Ott 2020
I suppose it may happen one day. For example, vpaintegral appeared a few years ago. They could provide a tool to do the same for an ODE. But I don't see it happening soon.
Steven Lord
il 30 Ott 2020
0 voti
What types of differential equations are you trying to solve that you need to use arbitrary precision arithmetic?
If you're trying to solve the ODE symbolically rather than numerically, take a look at the dsolve function in Symbolic Math Toolbox.
If you have computed a symbolic equation for the right-hand side of your system of ODEs, you can convert that into a form that the numeric ODE solvers in MATLAB (like ode45) can accept that operates on double arrays using odeFunction also in Symbolic Math Toolbox.
This documentation page may be of interest.
Categorie
Scopri di più su Numeric Solvers in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!