Keep figures invisible until for loop is over to reduce time duration

39 visualizaciones (últimos 30 días)
From numerous data files I extract a column and plot all those columns into one graph. I do this by looping through them all in a for-loop. Then I make, say, 4 graphs likes this for different columns in those data files. Each graph is therefore appended an extra curve in each round in the for-loop.
The code is something like this:
for j=1:noOfFiles
figure(1); hold on; plot(A,B); hold off
figure(2); hold on; plot(C,D); hold off
figure(3); hold on; plot(A,D); hold off
figure(4); hold on; plot(A,F); hold off
end
Now, the issue is that when running the script from the command window in MatLab, each of the 4 figures open in a new window and I can visually see the curves being added at high speed. But for MatLab to show this visually, a lot of unnecessary time is wasted. There can be a quite large amount of curves to be added to each graph, so time reduction is my focus now.
I would like MatLab to only focus on running the loop and not on graphically displaying the graphs along the way, since this is extra time consuming. Maybe by making them invisible during the run?
What is the smartest method for obtaining this?
  1 comentario
sloppydisk
sloppydisk el 7 de Mayo de 2018
Can you attach the code? You can probably adjust the code to add multiple lines in one plot command.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Mayo de 2018
fig1 = figure(1, 'Visible', 'off');
ax1 = axes('Parent', fig1);
hold(ax1, 'on');
fig2 = figure(2, 'Visible', 'off');
ax2 = axes('Parent', fig2);
hold(ax2, 'on');
fig3 = figure(3, 'Visible', 'off');
ax3 = axes('Parent', fig3);
hold(ax3, 'on');
fig4 = figure(4, 'Visible', 'off');
ax4 = axes('Parent', fig4);
hold(ax4, 'on');
for j = 1 : noOfFiles
plot(ax1, A, B);
plot(ax2, C, D);
plot(ax3, A, D);
plot(ax4, A, F);
end
hold(ax1, 'off');
hold(ax2, 'off');
hold(ax3, 'off');
hold(ax4, 'off');
set([fig1, fig2, fig3, fig4], 'Visible', 'on');
  6 comentarios
Walter Roberson
Walter Roberson el 7 de Mayo de 2018
Figures often have multiple axes, so plot(fig1, A, B) is typically not enough and MATLAB did not choose to implement it. Colorbars, legends, and annotation() objects are all implemented with axes.
If you were desperate to save a line at the expense of considerable added confusion, in each place that I passed ax1, you could replace that with findobj(fig1, 'type', 'axes') such as
plot(findobj(fig1,'type','axes'), A, B);
title(findobj(fig1,'type',axes'), 'Status');
Steeven
Steeven el 7 de Mayo de 2018
Thank you both for you suggestions.
@WalterRoberson, your code example works if I remove the numeric numbering of the figures, meaning from this:
fig1 = figure(1, 'Visible', 'off');
to this:
fig1 = figure('Visible', 'off');
Thanks again for the help.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by