Saving data in folders

This file is for saving the results and figures generated by the matlab in different folders
5 Downloads
Updated 3 Sep 2022

View License

% 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

Cite As

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

MATLAB Release Compatibility
Created with R2022a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags
Version Published Release Notes
1.0.0