ode45 where odefun requires more parameters
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Juliette Salexa
am 25 Dez. 2014
Kommentiert: Star Strider
am 10 Mär. 2021
My odefun.m has the following input structure:
function dy = odefun(t,y,a,b,c)
I want to use ode45 to integrate the ODE, but I need to see an example where the odefun takes in more than just t & y.
Please bear in mind that I've already read the following, and many more:
8. http://www.mathworks.com/matlabcentral/answers/47623-bugfixing-for-ode45-too-many-input-arguments
I've also read about arguments for function handles, "anonymous functions" and much more.
I believe that now it would be most constructive if someone could please just provide an example.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 25 Dez. 2014
I’m not exactly certain what you’re actually asking, since my interpretation of your question is covered in the ode45 documentation. You haven’t listed the code for your ‘odefun’, or described what you want to do, so I’m guessing here.
If I understand correctly, what you want to do is a common way of passing extra parameters to your ODE function.
To use it with ode45, you only pass the ODE solver the ‘t’ and ‘y’ variables:
[t,y] = ode45(@(t,y) odefun(t,y,a,b,c), tspan, ic);
Note that ‘a’, ‘b’, and ‘c’ have to exist in your workspace.
3 Kommentare
Rik
am 10 Mär. 2021
@(t,y) odefun(t,y,a,b,c)
This creates an anonymous function, with t and y as inputs. The values of the other variables are retrieved when the anonymous function is created:
y=1;
f=@(x) x+y;
y=3;
f(1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!