How to save GUI figure

1 次查看(过去 30 天)
Jas Gil
Jas Gil 2012-5-16
Hi, I am trying to save GUI Figure in a loop with different name every time when a fresh set of data passed which is ploted on the GUI charts, so that I will have Gui figure for each set of data.
Thanks.

采纳的回答

Daniel
Daniel 2012-5-16
The function "saveas" may do what you need. Also, "eval" and "sprintf" could be useful for including variables in the figure name. An example would be:
A = randn(10,100);
for i=1:10
figure
plot(1:100,A(i,:))
eval(sprintf('saveas(gcf, ''figure_%d'', ''fig'')',i));
end
This creates a set of 10 figures with the name of each figure determined by the value of the variable "i". Hope that gets you started!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by