PlotFcns how to display progress in the number of nodes

1 view (last 30 days)
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

Answers (2)

Krishna Bindumadhavan
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.

Alan Weiss
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

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!