.txt to matrix separated by blank lines

1 回表示 (過去 30 日間)
alyse tran
alyse tran 2021 年 6 月 25 日
回答済み: Nikhil Sapre 2021 年 6 月 25 日
I have txt files of 2 columns, where different trials are separated by two blank lines. How can I convert this data into matrices, where each trial is in a different matrix? Thank you for any help.

回答 (1 件)

Nikhil Sapre
Nikhil Sapre 2021 年 6 月 25 日
Hi Alyse,
Can you try something similar to this?
FileList = dir('*.txt');
[~,idx] = sort([FileList.datenum]);
FileData = [];
for iFile = 1:numel(idx)
currFile = FileList(idx(iFile)).name;
FileData.(['file_' num2str(iFile)]) = load(currFile);
end
Make sure your current directory is your .txt files are located.
Thanks,
Nikhil

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by