Algebraic Problem in writing the function for LSQNONLIN tool in the Optimization Toolbox
이전 댓글 표시
Hello,
I am using lsqnonlin for fitting a non linear equation to the model
z=Ax+(B*log(y))+(C/y)+(D*x*log(1+y))
X matrix is 10x2 double matrix. 1st column contains values for x and 2nd column contains values for y.
x(1) and x(2) represent x and y respectively in the model.
The function definition to be used in lsqnonlin is as follows:
function F=myfun(x,X,Z) k=1:10; F=(x(1)*X(k,1))+(x(2)*log(X(k,2)))+(x(3)/X(k,2))+(x(4)*X(k,1)*log(1+X(k,2)))-Z(k); end
I have all the values for the X and the Z matrix.
The problem is that whenever I am trying to call the myfun function, the error which it shows is:
??? Error using ==> plus Matrix dimensions must agree.
Error in ==> myfun at 3 F=( x(1) * X(k,1) )+( x(2) * log(X(k,2) )+( x(3) / X(k,2) )+( x(4) * X(k,1) * log(1+X(k,2) ) ) - Z(k);
Please clear this up.
Thank you.
댓글 수: 1
Andrei Bobrov
2012년 5월 11일
may be try use 'lsqcurvefit'
채택된 답변
추가 답변 (1개)
Sargondjani
2012년 5월 11일
0 개 추천
the message simply tells you that if youo want to add two matrices they have to be of the same size, and apparently that is not the case
(split the equation in parts if you want to find out where it goes wrong)
it might be that your Z is a row vector and not a column vector.
i also see a future error message: if you want to devide a number by a vector you have to use './' instead of '/' (after the x(3))
댓글 수: 3
Rohan Khadatkar
2012년 5월 11일
Sargondjani
2012년 5월 11일
but you also add x(1)*X(k,1) + x(2)*log(X(k,1))...
that's adding two matrices (vectors). andrei's correction might do the trick though...
Andrei Bobrov
2012년 5월 11일
give code calling error
카테고리
도움말 센터 및 File Exchange에서 Choose a Solver에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!