Fitting LSQCURVEFIT
Hello,
I am trying to fit several parameters that effect sever different
outputs. So I have several different data sets and model data.
I have been using LSQCURVEFIT for one set of model and actual data by
creating model coefficients, but don't know how to input multiple data
sets and equations.
In the flowing example I am solving for Z, I generated simulated data
varying TH,F and Z and want to fit it to experimental data, where F
and TH are know and Z is unknown.
%data
MODEL_DATA1(Z,F)
MODEL_DATA2(Z,F)
MODEL_DATA3(Z,TH)
MODEL_DATA4(Z,TH)
EXP_DATA1(F)
EXP_DATA2(F)
EXP_DATA3(TH)
EXP_DATA4(TH)
Should I create a sum of the differences function of all the data as
the input function to lsqcurvefit?
Thanks,
Germain
.
Relevant Pages
- Re: Fitting LSQCURVEFIT
... I have been using LSQCURVEFIT for one set of model and actual data by ... varying TH,F and Z and want to fit it to experimental data, where F ... Should I create a sum of the differences function of all the data as ... So you have measured Z in 4 experiments varying first F ... (comp.soft-sys.matlab) - Re: lsqcurvefit bounds influence fitting result
... Without analyzing your particular function, I can say that many, perhaps most, realistic fitting problems have many local minima. ... Changing the bounds causes lsqcurvefit to reach different local answers. ... If you have a Global Optimization Toolbox license, you can use MultiStart to search for a global minimum very easily. ... a upper bound but the results of the fit vary quite drastically ... (comp.soft-sys.matlab) - Re: Fitting LSQCURVEFIT
... I have been using LSQCURVEFIT for one set of model and actual data by ... varying TH,F and Z and want to fit it to experimental data, where F ... The model data are the same metrics as the experimental data simulated ... (comp.soft-sys.matlab) - transistor parameter optimization-lsqcurvefit
... I am having problems with the lsqcurvefit function. ... the equations which will help me to fit the mathematical model to ... The mathematical model that I implemented in matlab is correct ... (comp.soft-sys.matlab) - Re: messages returned using LSQCURVEFIT
... John D'Errico wrote: ... I am using LSQCURVEFIT to fit a curve to my data and although ... within reason. ... (comp.soft-sys.matlab) |
|