photo

Erandi T. Sandarenu


Last seen: 2년 초과 전 2021년부터 활동

Followers: 0   Following: 0

통계학

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Help with linear regression function
This was done by using the backslash operator. function [a b] = lin_reg(x,y) matrix = [x; ones(1,length(x))]'; x = ...

거의 3년 전 | 0

답변 있음
Help with linear regression function
This was done without using backslash operator. But it works! function [a b] = lin_reg(x,y) X = mean(x); Y = mean...

거의 3년 전 | 0