How to read .txt file in matlab (comma delimiter)
조회 수: 19 (최근 30일)
이전 댓글 표시
Hi guys, I would like to read all the data (including the header) from this .txt file, I could only read the numbers using dlmread, please assist me on this:
Adjusted depth,temp,trans
1,22.5,122.3
3,22.6,111.5
댓글 수: 0
답변 (1개)
Walter Roberson
2015년 11월 5일
fid = fopen('YourFile.txt', 'rt');
tline = fgetl(fid);
headers = strsplit(tline, ','); %a cell array of strings
datacell = textscan(fid, '%f%f%f', 'Delimiter',',', 'CollectOutput', 1);
fclose(fid);
datavalues = datacell{1}; %as a numeric array
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!