How can I convert csv files to matlab whilst also looping through folders?

조회 수: 1 (최근 30일)
JJH
JJH 2018년 11월 15일
답변: Jan Studnicka 2018년 11월 15일
I have been trying to write a code that loops through a set of folders that all contain a set of files. The files in each folder have the same name, it is only the name of the folder that varies. So far I have
SpectrumFileInfo = dir('Spectrum Data*');
NSpec = numel(SpectrumFileInfo);
for i = 1:NSpec
SFI(i) = SpectrumFileInfo(i);
end
for k = 1:length(SFI)
FolderName = SpectrumFileInfo(k).name;
Direc = dir([FolderName '\I*']);
NumFiles = numel(Direc);
for kk = 1:NumFiles
[num,text,raw] = csvread(Direc(k).name);
[dummy, myName] = fileparts(Direc(k).name);
save(myName)
end
end
but this says there is an error in the csvread command (too many output arguments). I took this part from a code I found for xlsread and didn't really understand but what I want to do is convert each file in each folder to a mat file with the same name. How can I edit this section of the code to do this? My files are a bit too big to include here.

답변 (1개)

Jan Studnicka
Jan Studnicka 2018년 11월 15일
Hi,
I would try using datastore:
Hope it helps.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by