lsqnonlin multiple dataset optimisation

6 views (last 30 days)
Hello;
I would like to optimise simple ode using multiple datasets. I wonder if is possible to do it using lsqnonlin command? Of course, I will want to allow for different values of the initial conditions for each dataset.
I found, that Population-wide parameter estimation can be done in the Simbiology, however, I would rather prefer to use the lsqnonlin.
Thank you in advance

Accepted Answer

Alan Weiss
Alan Weiss on 1 Mar 2021
It sounds like you are trying to find a set of ODE parameters that work for multiple data sets. If that is true, then I think that the workflow is this:
  • Have lsqnonlin pass in a set of parameters x.
  • in your ODE solving function solve each ODE with its own initial conditions for its own set of times.
  • Concatenate all of the solutions as F(x) and calculate F(x) - [xdata;ydata;zdata] as the lsqnonlin output (response)
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
  1 Comment
Malgorzata Wieteska
Malgorzata Wieteska on 2 Mar 2021
Thank you Alan, That is exactly that what I wanted to know. Thank you very much. Malgosia

Sign in to comment.

More Answers (2)

Arthur Goldsipe
Arthur Goldsipe on 27 Feb 2021
You can use lsqnonlin with or without SimBiology. If you want to do this without SimBiology, you need to write a function that takes in the parameters you are trying to estimate, solves your ODEs (for example, using ode45 or ode15s, and returns a vector of residuals (the difference between the simulation results and the measured values). You will also find many similar questions posted on MATLAB Answers, several of which are mentioned in the answer here.

Malgorzata Wieteska
Malgorzata Wieteska on 28 Feb 2021
Hello Arthur, thank you for your reply. However, I want to use lsqnonlin to optimise ode system for multiple experimental dataset, and I wonder if is possible to do it using lsqnonlin. I wonder if I can feed in multiple datasets into lsqnonlin syntax: for instance -
data1 = [ xdata1 xdata2 ];
data2 = [ ydata1 ydata2 ];
data3 = [ zdata1 zdata2 ];
%%call |LSQNONLIN|
lsqnonlin(@ODEfunction,[],[],[],[],xdata,ydata,zdata)?
Malgosia

Categories

Find more on Scan Parameter Ranges in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!