I have a black-box multiargument multiparametric function of the type SRD[dataPoint_List,params_List] which accepts experimental data along with the parameters of the model and returns a vector with the first element being the squared relative deviation (SRD) between the computed model value and experimental value for the given data point and the rest of the elements being the gradient of the SRD in the given point with respect to params. I wish to minimize the sum Sum[First[SRD[dataPoint, params]], {dataPoint, dataPoints}] with respect to params using the Levenberg-Marquardt algorithm and the computed gradient of SRD with respect to params (equal to Sum[Rest[SRD[dataPoint, params]], {dataPoint, dataPoints}]). What is the best way to do this in Mathematica?
|
|
||||
|
I had a similar situation once, here's a prototype similar to your problem that I wrote once on the Mathematica forum of LinkedIn, you can adapt it to your needs, the gradient is computed using the "Residual" option of the Method option.
|
|||
|
|
|
Here is the solution based on Faysal's code:
Note that it is recommended to use exact numbers for the parameters of the
and not to
as it is by default. The jacobian may be calculated automatically by the following code:
One can restrict the jacobian to be evaluated for numerical values only by defining it as:
|
||||
|
|

Method -> "LevenbergMarquardt"can take"Jacobian"and"Residual"options, which you should look into. – 0x4A4D♦ Feb 18 '12 at 8:33