Curve fitting while an unknown variable needs to be determined at each data point

8 ビュー (過去 30 日間)
I am trying to perform curve fitting using MATLAB wherein the fitting function f(x,a1,C1,C2,C3...) consists of a set of parameters C1,C2,C3..., the independent variable x, and another variable a1.
The problem in my case is, the variable a1 needs to be determined along with the parameters C1,C2,C3..., but unlike the parameters, a1 needs to be different at each data point. I wonder how to estimate this variable a1 at each data point while also identifying the set of parameters during curve fitting.
I know the allowable range of this variable a1. But don't know how to implement such a program.
Presently, I am using the fmincon function by defining an objective function to be minimized in the least squares sense.
Kindly assist me in finding a way to approach this problem. Thanks!

採用された回答

Matt J
Matt J 2021 年 12 月 10 日
編集済み: Matt J 2021 年 12 月 10 日
Presently, I am using the fmincon function by defining an objective function to be minimized in the least squares sense.
fmincon would work fine, but lsqcurvefit is more specifically tailored to curve fitting. The documentation and examples for lsqcurvefit should help you get started, but basically you need to supply a model function F(p,xdata) where p=[a1;C1;C2,...]
The problem in my case is, the variable a1 needs to be determined along with the parameters C1,C2,C3..., but unlike the parameters, a1 needs to be different at each data point.
That is of no consequence in terms of implementation. lsqcurvefit only cares that ydata=F(p,xdata) is a differentiable (in p) prediction of your dependent variables ydata. It does not care about the specific dependence beyond that.
However, it may be a concern that you have more parameters than data points. It might make the fit highly under-determined.
  5 件のコメント
Torsten
Torsten 2021 年 12 月 10 日
編集済み: Torsten 2021 年 12 月 10 日
Define the vector x of unknowns as x = [a1;C1;C2;C3;...] (in other words: put all your unknowns together in one single column vector x).
Subraya Krishna Bhat
Subraya Krishna Bhat 2021 年 12 月 13 日
Thank you very much for helping me with my queries, Mr. @Matt J and Mr. @Torsten. I tried to write a program accordingly, i.e., by defining a vector of unknowns x = [a1, C1, C2,...], where a1 = [a1(1), a1(2), a1(3),...] is the array of 'a1's.
But now I now have a doubt regarding defining the fitting function.
Presently, in the function when I write x(1) to represent a1(1), it does not calculate the remaining unknowns in the a1 array.
But I need to evaluate each element of a1 for each data point of the xdata array. For e.g., a1(i) must be calculated for xdata(i). Could there be any workaround to solve this need? Kindly let me know.
Thanks for your time!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by