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
댓글 수: 0
채택된 답변
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
댓글 수: 0
추가 답변 (2개)
Walter Roberson
2013년 9월 7일
data = regexp( fileread('file1.txt'), '\n', 'split' );
save file2 data
댓글 수: 0
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')
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Data Preparation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!