How can i write this in Matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
댓글 수: 1
Walter Roberson
2020년 3월 28일
The summation can be split to and each of those Σ can be translated into a sum() call.
With a small bit of cleverness you can also replace two of the sums with var() calls.
답변 (1개)
Ameer Hamza
2020년 3월 28일
편집: Ameer Hamza
2020년 3월 28일
If x and y are 1D vectors then try something like this.
x = rand(100, 1);
y = rand(100, 1);
x_bar = mean(x);
y_bar = mean(y);
b_hat = sum(x-x_bar)*sum(y-y_bar)/sum((x-x_bar).^2);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!