2

我正在使用优化函数“fmincon”,在某些情况下它不会收敛。我必须识别这些情况并采取必要的措施,但使用的所有方法都无法捕获错误,因此我继续收到错误:

No feasible solution found.

fmincon stopped because the size of the current search direction is less than
twice the default value of the step size tolerance but constraints are not 
satisfied to within the selected value of the constraint tolerance.

首先,我尝试选择函数的退出标志:如果它返回一个已知错误(-1、1、0...),但每次我遇到错误时,返回的退出标志都有一个正确的值。

[x,fval,exitflag] = fmincon(@(x) costFunction(x,INPUTS),x0,A,b,[],[],lb,ub,[],options);
if exitflag == 0
    do something;
end

然后我尝试使用“try/catch”结构,但在这种情况下,代码继续运行并且没有出现错误...

try %start try/catch
    [x,fval,exitflag] = fmincon(@(x) costFunction(x,INPUTS),x0,A,b,[],[],lb,ub,[],options);
catch err
   disp(err.identifier);
       ... actions 
end  % end try/catch

欢迎任何建议。

ps:使用的选项有:

options = optimset(oldopts,'Display','notify', 'Algorithm','active-set', 'MaxFunEvals', 10000);
4

2 回答 2

0

根据文档,您应该注意exitFlag == -2而不是0检查这种情况:

IE

[x,fval,exitflag] = fmincon(@(x) costFunction(x,INPUTS),x0,A,b,[],[],lb,ub,[],options);
if exitflag == -2
    %// Handle non-convergence
else
    %// Converged
end
于 2014-01-24T14:01:11.177 回答
0
  1. 里面有什么oldopts
  2. is less than twice the default value of the step size tolerance建议您需要更改步长或公差值。有几种方法可以解决这个问题:猜测或显示迭代显示。

    optimset(oldopts,'Display','iter' ...% or 'iter-detailed'
    
  3. 确定要更改的内容后,可以使用以下方法进行设置:

    optimset(options,'stepsize', 1e-2) % or optimset(options,'tolX', 1e-e)...
    
  4. 停止查看退出标志以引发错误。该错误是收敛或迭代问题。

  5. 问问自己算法是否能够使用图形方法收敛(如果可能)

  6. RTM: http: //www.mathworks.com/help/optim/ug/when-the-solver-fails.html

于 2013-02-09T17:08:39.383 回答