Dear Joe,
Is there a way to access the number of iterations once the algorithm stops, i.e., after having called the optimization solver?
For instance, we have the following to print the reason for convergence using MATLAB:
fprintf('The algorithm converged due to: %s\n', Optizelle.OptimizationStop.to_string(state.opt_stop));
I am wondering if there is a way to access the number of iterations in a manner similar to the following:
fprintf('Number of iterations: %d\n', Optizelle.OptimizationIterations...));
Also, happy new year!
Thank you in advance.