How to enter the R-square fit formula in the m-file?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I need to calculate the R-square fit for the model output. I have the formula for calculating it, but how to give it in the code and what is the plot command to get the r-square fit?
Please do help me.
0 Commenti
Risposta accettata
Wayne King
il 15 Feb 2014
Modificato: Wayne King
il 15 Feb 2014
Residual sum of squares
residsumsq = norm(y-yhat,2)^2;
Total sum of squares
tsumsq = norm(y-mean(y),2)^2;
R2 = 1-(tsumsq/residsumsq);
3 Commenti
Wayne King
il 15 Feb 2014
The y vector is the vector of your original data. The yhat vector is your fitted data as predicted by your model.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with Curve Fitting Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!