Algebraic Problem in writing the function for LSQNONLIN tool in the Optimization Toolbox
Ältere Kommentare anzeigen
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 Kommentar
Andrei Bobrov
am 11 Mai 2012
may be try use 'lsqcurvefit'
Akzeptierte Antwort
Weitere Antworten (1)
Sargondjani
am 11 Mai 2012
0 Stimmen
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 Kommentare
Rohan Khadatkar
am 11 Mai 2012
Sargondjani
am 11 Mai 2012
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
am 11 Mai 2012
give code calling error
Kategorien
Mehr zu Choose a Solver finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!