Call a certain function at the last iteration if flag is set to true

1 visualización (últimos 30 días)
I have a logic as following:
plot_final_iteration_only = true;
for iter = 1 : max_iter
% Do stuff...
if (plot_final_iteration_only)
if (iter == max_iter)
plotIteration(...);
end
else
plotIteration(...);
end
end
Is there any way to avoid writing plotIteration(...); for two times (which is a bit redundant for me), but with the same logic?

Respuesta aceptada

Walter Roberson
Walter Roberson el 26 de Nov. de 2021
plot_final_iteration_only = true;
for iter = 1 : max_iter
% Do stuff...
if ~plot_final_iteration_only || iter == max_iter
plotIteration(...);
end
end

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by