Optimisation functions: Skipping iterations if objective function returns an error or cannot run completely

7 次查看(过去 30 天)
I am using the optimisation toolbox (both the normal one and the Global one) for problems of a certain kind. The objective function in these cases are custom user defined functions, dependent on multiple other scripts. Thus, in certain cases, the variables to be optimised might return an error on running the objective if certain conditions (Apart from bounds and constraints) are not met. Assuming these conditions vary between test cases ie. cannot be accomodated in a constraint, the optimisation stops right when any iteration throws up an error.
Is it possible to make these optimisation functions skip the particular iteration if it returns an error, update the variables and move on to the next iteration?

采纳的回答

Matt J
Matt J 2022-7-5
编辑:Matt J 2022-7-5
Basically, the option available to you is to return inf from your objective when an error condition is reached. Some optimization algorithms will backtrack from inf values (e.g., fmincon's sqp algorithm) but not all.
function [fval]=myObjective(x)
try
%The usual code for the objective
fval=...
catch
fval=inf;
end
end

更多回答(0 个)

类别

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