PlotFcns how to display progress in the number of nodes
3 views (last 30 days)
Show older comments
Hello, I am using the intlinprog function, and I want to plot the progress in terms of number of nodes. But the plot shows me just the final solution with number of nodes equal to zero. How can I plot the progress while the algorithm executes ?
Thank you,
Mariam
0 Comments
Answers (2)
Krishna Bindumadhavan
on 22 Nov 2017
I think what you are looking for here could be the intlinprog Output function. This allows you to call an output function or plot function at suitable event occurrences during the algorithm. You can take a look at the documentation here: https://www.mathworks.com/help/optim/ug/intlinprog-output-functions-and-plot-functions.html.
0 Comments
Alan Weiss
on 22 Nov 2017
If you are using the built-in @optimplotmilp function for making your plot, and it shows no branch-and-bound steps, then intlinprog didn't take any branch-and-bound steps. Look at the iterative display and you'll see that the problem was solved without branch-and-bound, so there are no nodes. Nothing to plot.
Alan Weiss
MATLAB mathematical toolbox documentation
0 Comments
See Also
Categories
Find more on Linear Programming and Mixed-Integer Linear Programming 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!