3次以上の線形回帰の解析ができますか?

조회 수: 5 (최근 30일)
Takafumi
Takafumi 2017년 5월 2일
답변: Takafumi 2017년 5월 2일
fitlm関数では、線形、2次式、交互作用ありの2次式が可能なようですが、3次式以上で可能か知りたいです。

채택된 답변

Takafumi
Takafumi 2017년 5월 2일
可能です。 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])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!