matlab的figure4图片保存 将for循环嵌套的两层计数器都保存进文件名,并且规定保存路径为“E/results”
时间: 2024-05-03 16:20:01 浏览: 90
Matlab中图片保存的四种方法.pdf
假设你想保存名为"figure4"的图片,可以使用以下代码:
```matlab
for i = 1:10
for j = 1:10
% some code to generate the plot
figure;
plot(x,y);
% save the figure with i and j in the file name
saveas(gcf, sprintf('E/results/figure4_%d_%d.png', i, j));
end
end
```
这将在"E/results"文件夹中保存10x10=100张图片,文件名格式为"figure4_i_j.png",其中i和j是两个计数器的值。
阅读全文