Using fitnlm with multiple predictor variables

조회 수: 13 (최근 30일)
Joshua Chambers
Joshua Chambers 2017년 6월 1일
답변: Image Analyst 2021년 11월 21일
I am trying to perform non linear regression using 4 independent variables and a 2-term exponential model. I am using the following section of code:
X = [x1 x2 x3 x4];
b = [1 1 1 1];
x = ones(size(X));
modelfun = @(b,x) b(1,:).*exp(b(2,:).*x) + b(3,:).*exp(b(4,:).*x);
beta0 = ones(4,1);
However, I keep getting an error explaining that modelfun returns a vector of 4 columns where it should be 1 column.
I have tried as many variations of modelfun as a I can think of, can someone help?

답변 (1개)

Image Analyst
Image Analyst 2021년 11월 21일

카테고리

Help CenterFile Exchange에서 Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by