How can I find the coeficients alpha, beta of the simple linear regression, using "\" operator
조회 수: 2 (최근 30일)
이전 댓글 표시
How can I find the coeficients alpha, beta for the X coordinates of the simple linear regression, using "\" operator?
댓글 수: 0
답변 (1개)
Torsten
2022년 12월 10일
x = (0:0.1:1).';
y = 3*x + 4 + 0.01*randn(numel(x),1);
A = [x,ones(size(x))];
b = y;
coeffs = A\b;
coeffs(1)
coeffs(2)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!