Load different files then converting them into .txt files

1 回表示 (過去 30 日間)
Yasmin Tamimi
Yasmin Tamimi 2012 年 7 月 13 日
Hey everyone,
%%To load data from the (.mat) files and then convert them to (.txt) files
a=['20MIN_SCHJ300639_220208.mat' '20MIN_SEMS170640_040608.mat' '20MIN_SIMG200162_060208.mat'];
for i=1:3
fid = fopen('Data%i.txt', 'w');
load('a(i)');
fprintf (fid, '%.9f \r\n', data_block1);
fclose(fid);
end
I'm having an error in load('a(i)')!! How can I make it work?

採用された回答

per isakson
per isakson 2012 年 7 月 13 日
Make a a cell array of strings:
a={'20MIN_SCHJ300639_220208.mat' '20MIN_SEMS170640_040608.mat' '20MIN_SIMG200162_060208.mat'};
for i=1:3
fid = fopen('Data%i.txt', 'w');
load( a{i} );
fprintf (fid, '%.9f \r\n', data_block1);
fclose(fid);
end
  7 件のコメント
Ryan
Ryan 2012 年 7 月 13 日
What happens if you only load two files? (do you get data_block1 and data_block2 then?)
Yasmin Tamimi
Yasmin Tamimi 2012 年 7 月 14 日
編集済み: Yasmin Tamimi 2012 年 7 月 14 日
I loaded each one of the files separately to find the error!! So, I found 3 files out of the 70 that contain 3 data blocks. I removed them from the cell array and loaded them by themselves. I also found another error in the way I wrote my cell array, I fixed it and finally it worked properly!!

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 7 月 13 日
  1 件のコメント
Yasmin Tamimi
Yasmin Tamimi 2012 年 7 月 14 日
Thanx for your posts, I am reading them.

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

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by