How to read multiple file .txt by using readtable?

3 ビュー (過去 30 日間)
Mohamad Khairul Ikhwan Zulkarnain
Mohamad Khairul Ikhwan Zulkarnain 2018 年 6 月 4 日
回答済み: KSSV 2018 年 6 月 4 日
I got more than three file to read but if Im going to readtable every single file its going to takes time. Is there any method for me to read all this file in one go and save it in one file?

採用された回答

KSSV
KSSV 2018 年 6 月 4 日
files = dir('*.txt') ;
N = length(files) ;
SS = cell(N,1) ;
fid0 = fopen('myfile.txt','w');
for i = 1:N
fid = fopen(files(i).name,'r') ;
S = textscan(fid,'%s','delimiter','\n') ;
SS = S{1} ;
fclose(fid) ;
for j = 1:numel(SS)
fprintf(fid0,'%s\n',SS{j}) ;
end
end
fclose(fid0) ;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by