automate the transfer of text files iteraton wise

2 ビュー (過去 30 日間)
RAJ
RAJ 2019 年 8 月 22 日
コメント済み: Steven Lord 2019 年 8 月 30 日
Dear All
I have 730 text files named as file_1.txt, file_2.txt, ...,file_730.txt which need to be transfered in MATLAB such that file_1.txt will be transfered during 1st iteration and so on. I don't know how to address such automation. Please help !
Below is the code for the 1st file to be read during 1st iteration:
fID = fopen('file_1.txt','r');
diffusion=textscan(fID,'%n %n %n','headerlines',7,'Delimiter','');
fclose(fID);

採用された回答

Stephan
Stephan 2019 年 8 月 22 日
編集済み: Stephan 2019 年 8 月 22 日
name = "file_1.txt";
filelist = string(zeros(730,1));
diffusion = cell(730,1);
for k = 1:730
number = string(k);
filelist(k)=replaceBetween(name,"_",".",number);
fID = fopen(filelist(k),'r');
diffusion{k} = textscan(fID,'%n %n %n','headerlines',7,'Delimiter','');
fclose(fID);
end
  2 件のコメント
RAJ
RAJ 2019 年 8 月 30 日
Thanks Stephan for your help....
Steven Lord
Steven Lord 2019 年 8 月 30 日
You actually don't need replaceBetween here. The + operator for string arrays knows how to convert numbers into a string and concatenate that new string with the original string.
diffusion = cell(730, 1);
for whichfile = 1:730
thename = "file_" + whichfile + ".txt";
fID = fopen(thename, 'rt');
diffusion{k} = textscan(fID,'%n %n %n','headerlines',7,'Delimiter','');
fclose(fID);
end
In fact, this is vectorized which can be useful if you need the list of all the file names.
whichfile = (1:10).';
thename = "file_" + whichfile + ".txt"
Implicit expansion works too.
ind = 1:5;
A = "x(" + ind.' + "," + ind + ")"

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by