fzero runs out of iterations

4 次查看(过去 30 天)
David Pesetsky
David Pesetsky 2016-6-21
Hi,
Depending on where I start fzero searching, it either will, or will not find the zero that I know is there. If I start it closer, it finds it. Is there a way to just increase the number of tries it takes before giving up? It should be a well-behaved 4th order polynomial with 2 zeros. I'm willing to try something else more robust if needed. Haven't looked into fsolve yet....
Thanks!
Dave

回答(2 个)

Roger Stafford
Roger Stafford 2016-6-21
You should try giving ‘fzero’ an x0 (estimate) value in the form of a two-element vector such that the function is of opposite signs at the two points of x0. That should be a guarantee of a fast convergence.
  4 个评论
David Pesetsky
David Pesetsky 2016-6-21
But it will return only 1 zero within that range right? So since I'm looking for 2 zeros, I do the range method twice. But the zero(s) could be in positive or negative X-territory, so i don't have a generic range that will always work. If I could tell it to start very high, and walk to lower values, I know it would always work. And not run out of iterations :)
Torsten
Torsten 2016-6-21
If it's a polynomial, why don't you use "roots" to find its zeros ?
Best wishes
Torsten.

请先登录,再进行评论。


John D'Errico
John D'Errico 2016-6-21
It is claimed to be a polynomial. Use roots!
By the way, fzero will be far more robust than fsolve, because you should be supplying a bracket that bounds your root. fsolve is targeted at multidimensional problems.
But roots is better than any of these alternatives, if it is truly a polynomial.
  3 个评论
John D'Errico
John D'Errico 2016-6-21
编辑:John D'Errico 2016-6-21
You want a more robust solution. Do the work and compute the coefficients. Roots will be seriously faster.
Or, use symbolic tools if you just want a solution and are not worried about it taking a bit more time. solve or vpasolve will give the solutions with no problems. Then you will not have any problems in computing the coefficients, since MATLAB will do all the work. It still will very possibly be faster than an iterative scheme that may or may not happily converge.
As for fighting for a symbolic license, use symbolic tools ONCE, upfront. I fail to see the problem here.
David Pesetsky
David Pesetsky 2016-6-21
Once, upfront? You mean make an executable out of the .m to bake the license in somehow?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by