Read text file and store in .mat file

3 次查看(过去 30 天)
I have a text file with these values:
d030bcb1
6142d6ad
619b8312
618803cb
61866781
619c04c5
61c420b2
61ba1feb
61bec5b3
6221fe09
I want to read this text file and store in a .mat file.
thanks in advance

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-9-7
编辑:Azzi Abdelmalek 2013-9-7
fid = fopen('file1.txt');
A= textscan(fid,'%s');
fclose(fid);
celldisp(A)
save file2 A

更多回答(2 个)

Walter Roberson
Walter Roberson 2013-9-7
data = regexp( fileread('file1.txt'), '\n', 'split' );
save file2 data

Razvan
Razvan 2013-9-7
filename = 'example.txt';
fileID = fopen(filename,'r');
data = textscan(fileID, '%s\n');
data = data{1};
fclose(fileID);
save('example.mat', 'data')
  1 个评论
Sudharsan
Sudharsan 2013-9-7
Thanks Razvan
but this code writes only the first data i.e: d030bcb1 to the mat file.
can u help me further..

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by