Probably simple - ode45 and lsqcurvefit

1 回表示 (過去 30 日間)
Rhys
Rhys 2014 年 5 月 26 日
コメント済み: Star Strider 2014 年 5 月 26 日
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.

採用された回答

Star Strider
Star Strider 2014 年 5 月 26 日
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 件のコメント
Rhys
Rhys 2014 年 5 月 26 日
編集済み: Rhys 2014 年 5 月 26 日
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 2014 年 5 月 26 日
My pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistorical Contests についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by