0

1 つの独立変数を使用した回帰用のこの matlab コードがありますが、2 つの独立変数 (x1 と x2) がある場合はどうなりますか? この多項式回帰のコードをどのように変更すればよいですか?

x = linspace(0,10,200)'; % independent variable
y = x + 1.5*sin(x) + randn(size(x,1),1); % dependent variable

A = [x.^0, x];        % construct a matrix of permutations
w = (A'*A)\(A'*y);    % solve the normal equation 
y2 = A*w;             % restore the dependent variable
r = y-y1;             % find the vector of regression residual

plot(x, [y y2]);
4

1 に答える 1

1

Matlab には、多項式回帰関数の機能がありますpolyfit。あなたはそれを試しましたか?

http://www.mathworks.com/help/techdoc/data_analysis/f1-8450.html

http://www.mathworks.com/help/toolbox/stats/bq_676m-2.html#bq_676m-3

しかし、独自の定式化を試したい場合は、回帰に関する教科書やオンライン リソースを参照する必要があります。

http://www.edwardtufte.com/tufte/dapp/DAPP3a.pdf

于 2011-07-22T21:54:11.027 に答える