필터 지우기
필터 지우기

nonlinear curve fitting: how to add an extra data vector?

조회 수: 2 (최근 30일)
Ramirez
Ramirez 2014년 9월 24일
댓글: Matt J 2014년 9월 25일
Hi, I know how to fit a curve to the ' ydata ' vector, e.g.:
opt = fitoptions('Method','NonlinearLeastSquares',...
'Startpoint',[1,0.2]);
fun = fittype('p1*cos(x)+p2*sin(x)','options',opt);
[fitobject,gof,output] = fit(time',ydata,fun)
However, I would like to include an additional data vector [same size as time and ydata(time) ] as a non-free time varying parameter [ pdata(time) ] to the function, so that we have something along this form:
fun = fittype('pdata*(p1*cos(x)+p2*sin(x))','options',opt);
Does anyone know how to implement this?

답변 (1개)

Matt J
Matt J 2014년 9월 24일
편집: Matt J 2014년 9월 24일
You can specify the model as an anonymous function and pass parameters to that in the usual way and/or you could use the 'problem' input option to fittype/fit, see
  댓글 수: 2
Ramirez
Ramirez 2014년 9월 24일
I tried your suggestion using:
fun = fittype( @(p1,p2,pdata,x) pdata*(p1*cos(x)+p2*sin(x)))
[fitobject,gof,output] = fit(time',y,fun,'problem','pdata')
where pdata is a vector with the same length as y and time. However I get the following error message:
Error using fit>iAssertNumProblemParameters (line 1115) Wrong number of values for problem parameters. Specify the values as a cell array with one element for each problem parameter in the fittype.
Matt J
Matt J 2014년 9월 25일
fun = fittype( @(p1,p2,x) pdata.*(p1.*cos(x)+p2.*sin(x)),'problem','pdata');
[fitobject,gof,output] = fit(time',y,fun,'problem',pdata)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by