Renaming Fit rsquare value
2 次查看(过去 30 天)
显示 更早的评论
I have made a fit for a set of data. It returns an rsquare value, which I have to rename to R1.
%This is the code for the fit
ft1=fittype('m*x+b');
[Fit1,gof]=fit(A',T',ft1)
%Below is the output for gof. I need to rename rsquare to R1.
gof =
struct with fields:
sse: 2.1928e+03
rsquare: 0.0121
dfe: 8
adjrsquare: -0.1114
rmse: 16.5561
0 个评论
采纳的回答
Scott MacKenzie
2021-6-26
ft1=fittype('m*x+b');
[Fit1,gof]=fit(A',T',ft1)
R1 = gof.rsquare
4 个评论
Scott MacKenzie
2021-6-26
I notice that you are not renaming the gof variable returned in each call to fit. So, after the second call, you no longer have gof from the first call. That's fine, but if you want to have all three R-squared values after the three calls to fit, you need to save them in some way. Here's one approach:
ft1=fittype('m*x+b');
[Fit1,gof]=fit(A',T',ft1)
R1 = gof.rsquare; % save 1st R-squared value
%% Second order poly
ft2=fittype('a*x.^2+b*x+c');
[Fit2,gof]=fit(A',T',ft2)
R2 = gof.square; % save 2nd R-squared value
%% Third order poly
ft3=fittype('a*x.^3+b*x.^2+c*x+d');
[Fit3,gof]=fit(A',T',ft3)
R3 = gof.rsquare; % save 3rd R-squared value
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!