Saving data in folders

버전 1.0.0 (1.29 KB) 작성자: Sarmed Wahab
This file is for saving the results and figures generated by the matlab in different folders
다운로드 수: 5
업데이트 날짜: 2022/9/3

라이선스 보기

% here the folder path is your directory where you want to save outputs
clear all; clc;
for i = 1:5
x = rand(10,1) ;
y = 3*x + i^2 ;
plot(x,y,"bo"); hold on;
a = plot(x,y) ; hold off;
% this i will give new name w.r.t numbering
dest_dir = "D:\folderpath" + i ;
mkdir(dest_dir);
filename = "plot"+string(i)+".png";
% saveas(fig,filename)
fig_file = fullfile(dest_dir , filename)
%saveas(a, filename) %save the file there directory
saveas( a, fig_file)
result = "results"+i;
matfile = fullfile(dest_dir, result);
save(matfile);
%save(result)
end

인용 양식

Sarmed Wahab (2024). Saving data in folders (https://www.mathworks.com/matlabcentral/fileexchange/117105-saving-data-in-folders), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2022a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
태그 태그 추가

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0