Borrar filtros
Borrar filtros

How to hold on with visible off for plots

2 visualizaciones (últimos 30 días)
ubaid haroon
ubaid haroon el 27 de Dic. de 2017
Comentada: dpb el 27 de Dic. de 2017
I am running a loop iloop = 1:23 and plotting data 23 times on a scatter plot. This job is currently running on a cluster so I can't have the gui open and I have set figure('Visible','off'). When I use this with 'hold on' only the last iteration of loop is plotted. How can I keep my figure visible but still retain the hold for 1:23?
  5 comentarios
ubaid haroon
ubaid haroon el 27 de Dic. de 2017
I was able to make this work by running multiple loops for each plot i was making.
dpb
dpb el 27 de Dic. de 2017
More than likely your problems stem from the following code snippet...
for i = 1:23
..........
fig1 = figure('name','NameOfFigure','Visible','off')
The above creates 23 different figures but uses the same variable has the handle for each. And, each call to scatter will thus plot into a new gca which will be the axes object of the lastest figure created. And, subsequently, when you use fig1 as the handle to the figure, you get only the last one; you've overwritten the variable for the previous 22 that are still there, just not visible.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Graphics Performance 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