Sorry I forgot to add that the figure is quite complex. it will contain multiple axes and plot both lines and images
What is the best way to create a persistant figure
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I would like to create a figure that persists between multiple calls to plot data. For example I would like to create the figure and then make several calls at a later time that will update or change the data displayed in that figure. I've thought about doing this one of two ways.
Having a function that creates the figure and plots the data and then returns handles for all the graphics objects it created. On subsequent calls I could then pass the handles back to that function. The existence of these handles would then cause the function to plot using those handles instead of creating new ones.
or
Using the matlab object oriented interface I could make all the handles members of the object and then have the object handle the plotting.
The second option seems more elegant and makes more sense in my head, but I fear that its going to be too slow.
Is there a better way solve this problem?
Respuesta aceptada
Matt Fig
el 30 de Jun. de 2011
figure
L(1) = plot(1:10);
hold on
L(2) = plot((1:10).^2);
Now if you want to erase L(1) later:
delete(L(1))
Also note that you can get the handle to the axes and use that with PLOT.
2 comentarios
Matt Fig
el 30 de Jun. de 2011
You should store the handle to each AXES object, then when you want to plot to a particular axes, make that one current by: axes(h).
The same goes for all your graphics handles. Store them then access them as needed...
Más respuestas (0)
Ver también
Categorías
Más información sobre Graphics Object Properties 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!