How to save the output of loop function with different names?
조회 수: 19 (최근 30일)
이전 댓글 표시
I created a for loop code which gives graphs as output. How can I save the graph seperately during each iteration?
채택된 답변
KSSV
2023년 7월 3일
for i = 1:10
fname = strcat('plot_',num2str(i),'.png') ;
plot(rand(1,10))
saveas(gcf,fname)
end
댓글 수: 0
추가 답변 (2개)
Image Analyst
2023년 7월 3일
help exportgraphics
Sample code snippet. Adapt as needed:
folder = pwd; % or 'C;\wherever you want'
for k = 1 : 5
% Create output filename.
baseFileName = sprintf('Plot %2.2d.png', k);
fullFilename = fullfile(folder, baseFileName);
% Make up your graphs however you want.
plot(rand(1, 10));
xlabel('x');
ylabel('y');
% Save the current axes to disk with the filename we just created.
exportgraphics(gca, fullFileNme);
end
댓글 수: 0
sushma swaraj
2023년 7월 6일
Hi,
To save each graph separately during each iteration of a for loop in MATLAB, you can use the saveas function. Here's an example of how you can modify your code to save the graphs:
for i = 1:N
% Add your code to generate the graph
filename = sprintf('graph_%d.png', i);
saveas(gcf, filename);
end
In this example, the for loop iterates N times. Inside the loop, you generate the graph using your code.After generating the graph, you can save it using the saveas function. The gcf command retrieves the handle of the current figure.
Hope it works!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!