Info
此问题已关闭。 请重新打开它进行编辑或回答。
Optimization: which function is better for my case?
1 次查看(过去 30 天)
显示 更早的评论
I have to perform an optimization with 3 inputs over a cost function. The 3 inputs have precise boundaries and stay around 1. I have tried:
- fminbnd, but it seems to not accept vector x;
- fmincon, but it shows me an error (see figure below);
- fminsearch, which has a good performance, but of course the result doesn't satifies every time the constraint.
Do you have suggestions?

0 个评论
回答(2 个)
Kirby Fears
2015-9-18
编辑:Kirby Fears
2015-9-18
From the fmincon screen shot, you didn't get any errors - just a warning. It's more of a notification.
fmincon is the way to go. Go through the documentation carefully to insure that you're supplying inputs as intended. Keep an eye on setting the tolerances and boundaries appropriately.
0 个评论
Abdelmoumen Bacetti
2015-11-29
It would be better if you can provide some code.
From the output, and regarding the narrow interval of your variables, I suspect that your cost function is constant or the step size is not small enough to allow the algorithm find a decreasing direction.
If you had chosen a small step, make sure that your function is convex in the interval by plotting it.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!