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

10 visualizaciones (últimos 30 días)
new2matlab
new2matlab el 19 de Feb. de 2020
Editada: Sindar el 19 de Feb. de 2020
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?

Respuestas (1)

Sindar
Sindar el 19 de Feb. de 2020
Editada: Sindar el 19 de Feb. de 2020
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)

Categorías

Más información sobre Search Path en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by