How to set up estimation method in sbiofit
Show older comments
Hi All,
I'm trying to estimate parametrs in my model using parameter estimation task in SimBiology toolbox.In the documentation available here it is mentioned that
"The default estimation method that sbiofit uses will change depending on which toolboxes are available."
Could someone explain how to set up fmincon in the following syntax?
sbiofit(model,gData,responseMap,estimatedParam,'fmincon')
I want to define an objective function and pass the following arguments to fmincon
fmincon(@objective,p0,A,b,Aeq,beq,lb,ub,nlcon)
I have a confusion here,
p0 is the initial value of parameters, A,b,Aeq,beq are linear equality and inequality constraints, which is (A=[ ],b=[ ],Aeq=[ ],beq=[ ]) in my case.lb and ub are the bounds of paramaters and ncoln is the nonlinear constraints that are the differential equations taht will be generated from my model present in xml file.
I've already specified p0,lb,ub in estimatedParam array with properties Name, InitialValue and Bounds
estimatedParams = estimatedInfo(paramsToEstimate,'InitialValue',ParameterInitialValues,'Bounds',ParameterBounds)
It's not to me how to define
fmincon(@objective,p0,A,b,Aeq,beq,lb,ub,nlcon)
since p0,lb,ub is already defined in estimatedParam array. However, I'd like to know
how to pass the other arguments objective ,A,b,Aeq,beq, nlcon in fmincon.
nlcon function is defined like this
Any suggestions will be highly appreciated.
2 Comments
Jeremy Huard
on 26 Apr 2019
The estimatedInfo object will let you define the parameters initial values and their lower and upper bounds.
But can you explain what you would like to achieve with nlcon?
Deepa Maheshvare
on 26 Apr 2019
Edited: Deepa Maheshvare
on 26 Apr 2019
Answers (1)
Jeremy Huard
on 26 Apr 2019
0 votes
Hi Deepa,
let me summarize my understanding of your problem and please correct me if I'm wrong:
- you only have steady state data for several experimental conditions
- there is no other data to fit the model to
- you also have parameter bounds
Is this correct?
If yes, I suggest to create a dataset with these steady state data as explained here. If this is experimental data, you will know when this data was measured so you can build a table with time points and measurements.
Then you can use sbiofit to fit your model to those data points. Again, the App will be of great help.
7 Comments
Deepa Maheshvare
on 26 Apr 2019
Jeremy Huard
on 26 Apr 2019
So, if this steady state data is the only data you have and you can't use it as such, I wonder how your objective function would look like. You need to give fmincon an objective function to minimize, so what would it be?
Also, you observe a steady state after some time but you don't really know what happens before. The model concentrations might have a complicated behaviour (maybe oschillations) that get dampened over time and reach a steady state after a while, which is what you observe. So your constraints might too strong.
I see two ways to tackle your problem:
- either you create a dataset and define a (reasonable) large time as being your the steady state time. In that case you can use sbiofit which will be more convenient and will give you the possibility to call sbioparameterci to get confidence intervals of parameters for example
- or you use fmincon or lsqnonlin/lsqcurvefit without nonlinear constraints but with an objective function that calls the function sbiosteadystate and compute the differences with your observed data.
Deepa Maheshvare
on 26 Apr 2019
Edited: Deepa Maheshvare
on 27 Apr 2019
Jeremy Huard
on 26 Apr 2019
What you describe is actually solution 1. You could create a data set with a single time point at tspan. I believe this is the easiest way to get access to loglikelihood, confidence intervals, get the results in a variant for instance. But both approaches are valid.
Deepa Maheshvare
on 27 Apr 2019
Edited: Deepa Maheshvare
on 27 Apr 2019
Jeremy Huard
on 29 Apr 2019
This is what you are currently doing by calling ode15s for [0,tspan] and taking the last data points.
And this is fine in my opinion. All you know from your data is that it was taken at steady state but you don't know exactly when. So all you need to do is take tspan large for everything in your system to be at steady state.
The idea with the data set with a single time point is to reproduce what you actually have, which is a single time point.
Deepa Maheshvare
on 29 Apr 2019
Edited: Deepa Maheshvare
on 29 Apr 2019
Communities
More Answers in the SimBiology Community
Categories
Find more on Scan Parameter Ranges in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!