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

6 views (last 30 days)
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?

Accepted Answer

Matt J
Matt J on 5 Jul 2022
Edited: Matt J on 5 Jul 2022
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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!