Read multiple .CSV files with csvread using a for loop

13 ビュー (過去 30 日間)
Jorge Mira Pérez
Jorge Mira Pérez 2018 年 3 月 24 日
コメント済み: Gershon Koral 2021 年 10 月 6 日
Hello all, I'm have some trouble developing an algorithm to read multiple files at once and store them in different matrices. Heres a little, but sufficient, description of the problem:
Say I have n files named i_p.CSV, where n is a large enough number to do this procedure manually and i is a number that goes from 1 to n. The file i_p.CSV is a csv file with three columns, so what I would end up have on MATLAB is a matrix called data_i, which would be a (m x 3) matrix, where m is also a very large number.
Any tips on how to proceed?

採用された回答

dpb
dpb 2018 年 3 月 24 日
d=dir('*_p.clv'); % dir struct of all pertinent .csv files
n=length(d); % how many there were
data=cell(1,n); % preallocate a cell array to hold results
for i=1:n
data(i)=csvread(d(i).name); % read each file
end
Now, iff every one of the n .csv files has the same number of rows you can convert to an array...
data=cell2mat(data);
If they aren't all the same length you'll have to augment the shorter to the length of the longest or truncate the longer to that of the shortest.
  8 件のコメント
dpb
dpb 2020 年 2 月 14 日
No truly practical way to skip the last line; simply delete it from the read array after reading the file.
Gershon Koral
Gershon Koral 2021 年 10 月 6 日
This answer is incorrect. The for loop should rather read:
data{i} = csvread(d(i).name);

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by