extracting data points after fitting
15 次查看(过去 30 天)
显示 更早的评论
what i did is...i loaded file in command window...defined x and y parameters...
load test.dat x=test(:,1); y=test(:,2); cftool
den i opened cftool
in this window i used "interpolate" in fitting options...which gives an overplot on my original data thus giving me now a continous fitted curve...below it is residual(about 0)... now i want the data points of this fitted curve...how will i do it...??
回答(2 个)
David Sanchez
2013-12-11
Save the fitting in the workspace, then:
my_pol = [fitting.p1 fitting.p2]; % insert the parameters from your fitting
X = 0:0.1:10; % define your x data here
Y = polyval(my_pol,X); % your Y data
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!