統計
MATLAB Answers
0 質問
2 回答
ランク
of 170,997
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
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年 前 | 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年 前 | 0
