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 = ...
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 = ...
4 years 前 | 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...
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...
4 years 前 | 0
