Clear Filters
Clear Filters

When does fsolve use Levenberg-Marquardt algorithm?

8 views (last 30 days)
Hi,
when does Matlabs fsolve method uses the Levenberg-Marquardt algorithm? The warning tells me, that the trust-region-dogleg algorithm cannot handle non-square systems.
What are the features/characteristics of a non-square system? Do I have more unknowns than equations? What else can be the 'problem'?
Thanks!

Accepted Answer

John D'Errico
John D'Errico on 16 May 2017
With fewer unknowns than equations, nothing you do can "solve" the problem, because there will be normally be infinitely many solutions (if any exist). At best, you can find a completely arbitrary solution among many. The solution you obtain will be completely dependent on your start point. Change the start point, and you will find some completely different solution.
With more unknowns than equations, you will have no EXACT solution in general. At best, you will need to find a set of parameters that minimizes the sum of squares of residuals. This is what algorithms like Levenberg-Marquardt are designed to solve, and why that algorithm must be invoked. At that point, you might as well have decided to used lsqnonlin instead of fsolve, since lsqnonlin is designed to solve that class of problem anyway.
As for what else can be the problem, it tells you exactly what the problem was! You have a non-square system.
  2 Comments
Manuela Gräfe
Manuela Gräfe on 16 May 2017
Edited: Manuela Gräfe on 16 May 2017
Ok, thank you. I am wondering because I built a script to solve a equation system with some fixed parameters. And with an for-loop I am solving this equation system for about 1000 times with different fixed parameters. The initial values for the fsolve method remain the same.
And so sometimes the fsolve uses the Levenberg-Marquadt. But I can't specify when it does so. Most of the time the trust-region does it's job.
And that is why I am wondering what is typical for a non-square system...
John D'Errico
John D'Errico on 16 May 2017
If you change the number of fixed parameters, fsolve must change the way it solves the problem. Not all such problems will have an exact solution.

Sign in to comment.

More Answers (0)

Categories

Find more on Nonlinear Dynamics in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!