How to save a table as a CSV in a folder within the directory

13 次查看(过去 30 天)
How do i save a table from my workspace as a .csv within my directory, inside a subfolder, so that I can call on it later in my script?

回答(1 个)

Sindar
Sindar 2020-2-19
编辑:Sindar 2020-2-19
writetable(T,'subfolder/myData.csv','Delimiter',',')
if 'subfolder' doesn't already exist, you may need to make it:
mkdir('subfolder')
later, you can load with:
T = readtable('subfolder/myData.csv');
though it may be necessary to set certain options (see readtable documentation)

类别

Help CenterFile Exchange 中查找有关 Search Path 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by