How can I plot a previous saved graph?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi there,
I'm having a problem in my code. I save a graph in a function, but i need to recovery this graph to plot in my GUI element axes. How can I do this without using global?
Thanks
2 comentarios
Walter Roberson
el 4 de Jul. de 2016
What is your coding to "save a graphic" ? I can think of several different meanings for that.
Image Analyst
el 24 de Ag. de 2016
Did you edit the question to say " I save a graph in a function, but i need to recovery this graph to plot in my GUI element axes. How can I do this without using global?"
Or was that the original question? I'm not sure what your edit was, and the answers so far don't seem like they would apply with your current post.
Respuestas (1)
Image Analyst
el 4 de Jul. de 2016
If you saved it as a .fig, just use open() (I think).
If you saved the graph as an image, use imread() and then imshow().
If you saved the individual variables to a .mat file with save(), then use load() and replot everything using plot() or whatever functions you used the first time.
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!