필터 지우기
필터 지우기

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

조회 수: 2 (최근 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 CenterFile Exchange에서 Nonlinear Optimization에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by