How to do linear fitting of data to get R square value and coeficient of a,b ?

조회 수: 9 (최근 30일)
Debarati Ghosh
Debarati Ghosh 2023년 11월 25일
댓글: Debarati Ghosh 2024년 3월 27일
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?

답변 (1개)

Ive J
Ive J 2023년 11월 30일
n = 100;
x = randn(n, 1);
y = randn(n, 1);
mdl = fitlm(x, y)
mdl =
Linear regression model: y ~ 1 + x1 Estimated Coefficients: Estimate SE tStat pValue ________ _______ _______ _______ (Intercept) 0.014768 0.10405 0.14193 0.88742 x1 0.11976 0.10612 1.1286 0.26182 Number of observations: 100, Error degrees of freedom: 98 Root Mean Squared Error: 1.03 R-squared: 0.0128, Adjusted R-Squared: 0.00276 F-statistic vs. constant model: 1.27, p-value = 0.262

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by