Reading in a text file and creating multiple arrays

2 ビュー (過去 30 日間)
Benjamin
Benjamin 2019 年 3 月 7 日
コメント済み: Benjamin 2019 年 3 月 7 日
I have a large text file. The first two lines appear as follows:
// cor=0.2 n=4000 N=10000
// r u_effe averg
Below that I have a bunch of lines of text with 4 columns. Then after the block of code finishes, I have 2 blanks lines, and then another 2 lines of code as above, but with cor=0.3. This goes on and on. Can I load this txt file into MATLAB and break up these into arrays with the different arrays named cor-0.2, cor-0.3 etc?
I have attached some sample code

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 3 月 7 日
  4 件のコメント
Benjamin
Benjamin 2019 年 3 月 7 日
I just put the data into excel. Is there a way that I can load each worksheet into MATLAB and store each as a separate array? I ultimately want to be able to loop through them.
Benjamin
Benjamin 2019 年 3 月 7 日
I think I got it:
[~,sheet_name]=xlsfinfo('filename.xlsx');
for k=1:numel(sheet_name)
data{k}=xlsread('filename.xlsx',sheet_name{k});
end;

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

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by