Renaming Fit rsquare value
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Timetables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!