Probably simple - ode45 and lsqcurvefit

1 Ansicht (letzte 30 Tage)
Rhys
Rhys am 26 Mai 2014
Kommentiert: Star Strider am 26 Mai 2014
This is probably really trivial, but what I need is a function that takes a vector of parameters and a vector of time and, with ode45, outputs the p values of the ode: dp/dt=b*p-d*p^2.
What I have is:
function dpdt=diffeqn(t,p,par)
b=par(1);
d=par(2);
dpdt=b*p-d*p^2
end
and then a separate script:
[year pdata]=ode45(@diffeqn,[year],p0,[],[0.015,0.001]);
disp(pdata)
This does work fine for what is needed, but I think I need this all in one function, in order to call it in a lsqcurvefit command.

Akzeptierte Antwort

Star Strider
Star Strider am 26 Mai 2014
Not trivial, but not obvious either. I did this a while back in my answer to Monod kinetics and curve fitting.
Your equations are fine. To use lsqcurvefit, you just need to wrap them inside the objective function you send to it.
You can even include the initial conditions in the parameters to be estimated if necessary. That’s something we can discuss later if you need to do it.
  3 Kommentare
Rhys
Rhys am 26 Mai 2014
Bearbeitet: Rhys am 26 Mai 2014
Thanks, it's good to know I'm on the right track. I don't know how to wrap them into the objective function though. The closest I've come to getting the lsqcurvefit to work is using a new function:
function pdata=curvefit(par,year)
[year pdata]=ode45(@diffeqn,[year],p0,[],[par]);
end
and the command:
lsqcurvefit(@curvefit,[0.015,0.001],[year],pop) % pop is the set of data I'm trying to fit to
I thought that would work but I get the error: "Error using lsqcurvefit (line 247) Function value and YDATA sizes are incommensurate."
EDIT: I tried using the year and pop vectors as column vectors instead, and I got an answer which seems to be good. Thank you for the help! :D
Star Strider
Star Strider am 26 Mai 2014
My pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Historical Contests finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by