How to get the R2 value of fit?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
In the code below, how to output the R2 value of the fitted coefficients?
ft = fittype('b*x^2+c*x+a');
load enso
fit(month,pressure,ft,'StartPoint',[1,3,5])
0 Kommentare
Akzeptierte Antwort
Stephan
am 30 Nov. 2022
ft = fittype('b*x^2+c*x+a');
load enso
[curve, gof]=fit(month,pressure,ft,'StartPoint',[1,3,5])
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Find more on Interpolation 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!