How to do linear fitting of data to get R square value and coeficient of a,b ?
Mostrar comentarios más antiguos
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?
Respuestas (1)
n = 100;
x = randn(n, 1);
y = randn(n, 1);
mdl = fitlm(x, y)
1 comentario
Debarati Ghosh
el 27 de Mzo. de 2024
@Ive J Thank you sir
Categorías
Más información sobre Linear and Nonlinear Regression en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!