how to saveas 20 figure as picture with different names ?

3 次查看(过去 30 天)
X=rand(1000);
c=1;
d=1;
for i=1:50:1000
for c=1:50+c
H(i)=X(c);
end
c=c+50;
D(d)=figure(d)
plot(H);
d=d+1
end

采纳的回答

Muu
Muu 2022-12-3
Use 'saveas(gcf, ['figure' num2str(d) '.png'])'
For example:
X=rand(1000);
c=1;
d=1;
for i=1:50:1000
for c=1:50+c
H(i)=X(c);
end
c=c+50;
D(d)=figure(d)
plot(H);
saveas(gcf, ['figure' num2str(d) '.png'])
d=d+1
end

更多回答(0 个)

类别

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

标签

产品


版本

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by