How to do linear fitting of data to get R square value and coeficient of a,b ?
Afficher commentaires plus anciens
I got x and y value. I want to fit the date linearly . I want to get Rsquare value and value of a and b. How to do in matlab?
Réponses (1)
n = 100;
x = randn(n, 1);
y = randn(n, 1);
mdl = fitlm(x, y)
1 commentaire
Debarati Ghosh
le 27 Mar 2024
@Ive J Thank you sir
Catégories
En savoir plus sur Linear and Nonlinear Regression dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!