Filter löschen
Filter löschen

How to hold on with visible off for plots

2 Ansichten (letzte 30 Tage)
ubaid haroon
ubaid haroon am 27 Dez. 2017
Kommentiert: dpb am 27 Dez. 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 Kommentare
ubaid haroon
ubaid haroon am 27 Dez. 2017
I was able to make this work by running multiple loops for each plot i was making.
dpb
dpb am 27 Dez. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by