Conditional Optimization problem: inf and NaN
Show older comments
Hi guys, I am doing a conditional optimization procedure. My problem is that it says:
'fmincon cannot continue: user function is returning Inf or NaN values.'
Apparently my user function returns a Inf, or NaN! Is there a way to avoid this issue? I am running the optimization 1000 times at once, but it is pretty frustrating when it fails on the half-way!
I tried FunValCheck 'on' without luck.
The fmincon looks: fmincon(@(varrho) nlobj(varrho,...,...),...,...)
The objective function is nlobj. I need to minimize it to catch the 5x1 parameter vector "varrho". nlobj returns a scalar and the gradient of it returns a 5x1 vector. I believe these are NaN or Inf. Is there a way to convert these to, say nlobj=5 and gradient=[5 5 5 5 5]' ?
Or probably this not the best way of doing it ?
hope to hear from someone. Thank in advance and have a good day,
-Martin Bergholt
Answers (4)
Yao Li
on 14 May 2013
0 votes
Try other initial values and adjust the tolerance by implementing optimoptions()
1 Comment
Shashank Prasanna
on 14 May 2013
0 votes
3 Comments
Martin
on 14 May 2013
Shashank Prasanna
on 14 May 2013
How you wish you take care of inf and nan is up to you. It is your objective function and it depends on your problem and what you are trying to optimize.
If you don't know how, I'd recommend trying my second suggestion, changing the solver. Some solvers are capable of handling infs and nans.
Shashank Prasanna
on 15 May 2013
Martin, you may have to provide us with your nlobj to understand how we can modify it to not return inf or nan.
1 Comment
Shashank Prasanna
on 14 May 2013
message to you above
Martin
on 15 May 2013
0 votes
2 Comments
Shashank Prasanna
on 15 May 2013
Martin, please reply as a comment to an existing answer instead of creating a new answer which is really a comment. This makes it easier to track the right answer.
Categories
Find more on Graphics Performance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!