Borrar filtros
Borrar filtros

When does fsolve use Levenberg-Marquardt algorithm?

8 visualizaciones (últimos 30 días)
Manuela Gräfe
Manuela Gräfe el 16 de Mayo de 2017
Comentada: John D'Errico el 16 de Mayo de 2017
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!

Respuesta aceptada

John D'Errico
John D'Errico el 16 de Mayo de 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 comentarios
Manuela Gräfe
Manuela Gräfe el 16 de Mayo de 2017
Editada: Manuela Gräfe el 16 de Mayo de 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 el 16 de Mayo de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Nonlinear Dynamics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by