Clear Filters
Clear Filters

Saving Table In For Loop?

7 views (last 30 days)
matlabkid602
matlabkid602 on 4 Aug 2017
Commented: matlabkid602 on 4 Aug 2017
How can I save a table in a for loop with corresponding file name?
I want to save it like how I am saving my figures, savefig(['gridded_dipoles_' num2str(i)]);
where i is my index.
How can I do this with writetable?
Thank you.

Accepted Answer

Dan Gianotti
Dan Gianotti on 4 Aug 2017
Something like this?
for i = 1:N
T = calculate_my_table(i); % Whatever you do to get your table
fname = ['MyTable',num2str(i),'.csv']; % or .txt, or however you want to save it
writetable(T,fname);
end
The sprintf function might help you think about how to make varying filenames as well.
  1 Comment
matlabkid602
matlabkid602 on 4 Aug 2017
Perfect Dan, thanks a lot. Have a good weekend.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!