Reading certain parts of text file

조회 수: 1 (최근 30일)
ALEX
ALEX 2014년 1월 13일
편집: Azzi Abdelmalek 2014년 1월 13일
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

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 13일
편집: Azzi Abdelmalek 2014년 1월 13일
a=importdata('file.txt')
data=a.data
  댓글 수: 5
Azzi Abdelmalek
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)
ALEX
ALEX 2014년 1월 13일
편집: Azzi Abdelmalek 2014년 1월 13일
I figured it out, there is a special function that does all of this hands free.
num = csvread(filename,13,0)
this data is already comma delimited, so I could open it as a txt file without any problems. If there aren't commas it might not be so easy.
this youtube video was helpful.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Standard File Formats에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by