可能です。 x1,x2,x3 の3変数で、3次の回帰式を定義したい場合、以下のコマンドで対応します。
fitlm(X,Y,'poly333')
あと、交互作用なしの設定も可能で、次数を行列で指定することで可能です。
fitlm(X,Y,[0 0 0;1 0 0; 0 1 0; 0 0 1; 2 0 0;0 2 0; 0 0 2;3 0 0; 0 3 0; 0 0 3])
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!