Solving non-linear parametric system of equations
Ältere Kommentare anzeigen
Hi everyone
I've been struggling to solve a non-linear system of parametric equations for a certain range of of values with the command fsolve.
Here is my discribed system function :
function F=thsol(th)
th3=1
F = @(th) [1.*cos(th1)+0.6.*cos(th2)+0.2.*cos(th3)
1.*sin(th1)+0.6.*sin(th2)+0.2.*sin(th3)-1];
this works :
sol = fsolve (thsol(th),[1,1])
but when i define th3 as a variable as followed :
function F=thsol(th,th3)
F = @(th,th3) [1.*cos(th1)+0.6.*cos(th2)+0.2.*cos(th3)
1.*sin(th1)+0.6.*sin(th2)+0.2.*sin(th3)-1];
and write down :
th3=1
sol = fsolve (@(th) thsol(th,th3),[1,1])
i get this :
"Warning: Trust-region-dogleg algorithm of FSOLVE cannot handle non-square systems; using
Levenberg-Marquardt algorithm instead.
> In fsolve at 314
??? Undefined function or method 'isfinite' for input arguments of type 'function_handle'.
Error in ==> levenbergMarquardt at 14
if any(~isfinite(costFun))
Error in ==> fsolve at 373
[x,FVAL,JACOB,EXITFLAG,OUTPUT,msgData] = ..."
I really don't get what's going wrong since i'm trying to solve the exact same system with the exact same values, only calling th3 as variable parameter. Anyone could tell me where i went wrong? thank you all
2 Kommentare
Shashank Prasanna
am 2 Mai 2013
Ignacio can you try formatting the code using the {}Code button?
Ignacio
am 3 Mai 2013
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Systems of Nonlinear Equations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!