optimization: have function return NaN but not at initial point
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I use fmincon interior-point algoritm to solve my optimization problem.
Based on Matlab's recommendation, I let my function return NaN if the objective function can not be evaluated for given parameters to indicate fmincon to try a different set of parameters. This works very well at intermediat iterations...
I got the following error:
"Errror using barrier. Objective function is undefined at initial point. Fmincon can not continue."
However, if I do not return NaN, fmincon, for whatever reasons, can solve the optimization problem even if the initial point is not correctly evaluated. Indeed, I observe this for many start vectors.
Anyway, is there a way to return NaN in my function always, except at the evaluation of the initial point? That is, figuring out (somehow) when my function is called with the initial point?
0 comentarios
Respuesta aceptada
Matt J
el 4 de Mzo. de 2023
Editada: Matt J
el 4 de Mzo. de 2023
Setting the objective to NaN should not be seen as a substitute for constraints. If there is a region where your objective function cannot be evaluated, you still have to specify appropriate constraints so that the algorithm knows to avoid that region.
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with Optimization Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!