필터 지우기
필터 지우기

Max number iterations for tolerance

조회 수: 6 (최근 30일)
Jami Turnquist
Jami Turnquist 2020년 3월 10일
답변: Matt J 2020년 3월 11일
x0 = [3,4];
function [F,gradient] = MyFunc(x)
F = 10*x(1).^2 + x(2)^2;
gradient = [20*x(1), 2*x(2)];
options = optimset('TolX', 0.01);
x = fminsearch(@MyFunc, x0, options)
end
I'm tryng to find the max number of iterations needed to find a minimum for the above function, using a tolerance of 0.01. For some reaspon this code will not yield results but it will run, just not show anything. Can anyone figure out the error?

답변 (2개)

Steven Lord
Steven Lord 2020년 3월 10일
Don't call fminsearch with MyFunc as your objective function from inside MyFunc itself. Move the lines where you call optimset and fminsearch outside MyFunc.
Assuming that MyFunc was nested inside its parent function (so it can "see" the definition of x0) and that parent function called MyFunc with an input x with at least two elements, this would:
  • call MyFunc which would call fminsearch which would
  • call MyFunc which would call fminsearch which would
  • call MyFunc which would call fminsearch ...
Eventually MATLAB would reach the recursion limit and throw an error or it would crash. If you've set the recursion limit too high, it potentially could crash the machine.
  댓글 수: 1
Jami Turnquist
Jami Turnquist 2020년 3월 10일
Are the x values I obtain the number of iterations it takes?

댓글을 달려면 로그인하십시오.


Matt J
Matt J 2020년 3월 11일
Call fminsearch with more output arguments to get information about how many iterations it took.
x0 = [3,4];
options = optimset('TolX', 1e-6);
[x,fval,exitflag, stats] = fminsearch(@MyFunc, x0, options)
function [F,gradient] = MyFunc(x)
F = 10*x(1).^2 + x(2)^2;
gradient = [20*x(1), 2*x(2)];
end
x =
1.0e-06 *
-0.2376 0.1417
fval =
5.8448e-13
exitflag =
1
stats =
struct with fields:
iterations: 64
funcCount: 124
algorithm: 'Nelder-Mead simplex direct search'
message: 'Optimization terminated:↵ the current x satisfies the termination criteria using OPTIONS.TolX of 1.000000e-06 ↵ and F(X) satisfies the convergence criteria using OPTIONS.TolFun of 1.000000e-04 ↵'

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by