how to store the intermediate result when using fmincon
11 views (last 30 days)
Show older comments
Dear fellows, I am using fmincon to do optmization. Could you tell me how to look at and store the intermediate result when fmincon is trying different value? Well, I need to give an initial value for fmincon to start, and after that, it will try different value to find the optimized one. I want to check all those values that it tried and the corresponding results. Cheers
0 Comments
Accepted Answer
Shashank Prasanna
on 30 Jan 2013
You can use OutputFcn to access values at each iteration.
See the following link for more information:
In the optionset you can use the function as below:
options = optimset('OutputFcn',@outfun)
More Answers (3)
Daniel Frisch
on 7 Oct 2020
You can use my function outputFcn_global that saves all the intermediate results in a global variable, so you can inspect them later on.
0 Comments
See Also
Categories
Find more on Surrogate Optimization 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!