fitting 1D data to y=x polynomial (cftool)

1 次查看(过去 30 天)
In an experiment vector y is a measurement of vector x. I want to fit polynomial y=x to this data and find R^2. When I use polyfit(x,y,1), MATLAB gives me y=ax+b but I am interested in knowing the R^2 when the data is fitted to y=x. Could someone please help me on that?
I found cftool which can solve my problem. Could someone tell me how I can retrieve R^2 from the analysis of cftool when the data is fitted to a polynomial?
Thanks.
  1 个评论
Jesús Lucio
Jesús Lucio 2011-9-5
Hello. I think you only have to evaluate the fitted polynomial at the same abscissas and compare with the original ordinates:
poly = polyfit(x, y, 1);
yfit = polyval(poly, x);
cc = corrcoef(y, yfit);
R2 = cc(1, 2).^2;

请先登录,再进行评论。

回答(1 个)

Sean de Wolski
Sean de Wolski 2011-7-7
  5 个评论
Sean de Wolski
Sean de Wolski 2011-7-7
All you need to do is change the vandermonde matrix, in his example 'F'
Sean de Wolski
Sean de Wolski 2011-7-7
For zeroth order fit; i.e. what you want, it will just be x.^0, aka ones(size(x)) aka the mean.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Get Started with Curve Fitting Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by