필터 지우기
필터 지우기

Loop through multiple csv files

조회 수: 6 (최근 30일)
mcl1993
mcl1993 2016년 8월 25일
답변: per isakson 2016년 8월 25일
I have 2550 csv files. I have created a code that calculates a value for one of the files, but i need to loop over all 2550 and add together that value calculated for each csv file.
  댓글 수: 2
per isakson
per isakson 2016년 8월 25일
"I have 2550 csv files" &nbsp How to make a list of these files? Are they in a special folder? Are there some special characteristics in their names?
mcl1993
mcl1993 2016년 8월 25일
The csv files and .m file are all in the same folder. All the csv files are called Scan_* where * is a number

댓글을 달려면 로그인하십시오.

답변 (1개)

per isakson
per isakson 2016년 8월 25일
This is one approach, (which I like)
folderspec = 'c:\same\folder';
file_glob = 'Scan_*.csv';
sad = dir( fullfile( folderspec, file_glob ) );
for jj = 1 : length( sad )
fid = fopen( fullfile( folderspec, sad(jj).name ), 'r' );
cac = textscan( fid, ... );
fclose( fid );
...
...
end

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by