Reading certain parts of text file
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I'm trying to access certain parts of a text to process data. The text file has a header and many rows of numbers, starting at lines 13 through 4016 is a two column array. This is comma delimited. It would be nice to track information of this file located in the header but firstly I just want to bring all of these numbers into Matlab for processing. The formats don't change per text file just the numbers.
Thanks for your help, Alex
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 1 月 13 日
編集済み: Azzi Abdelmalek
2014 年 1 月 13 日
a=importdata('file.txt')
data=a.data
5 件のコメント
Azzi Abdelmalek
2014 年 1 月 13 日
編集済み: Azzi Abdelmalek
2014 年 1 月 13 日
fid=fopen('file.txt')
out=textscan(fid,'%f %f','HeaderLines',12,'Delimiter',',')
fclose(fid)
M=cell2mat(out)
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!