Hi,
I have some text files that I want to import all at once. I am using the following code to try to import them.
files = dir(fullfile(roothpath, '*.txt'));
file_paths = fullfile({files.folder}, {files.name});
for i = 1 : numel(file_paths)
data = textread(file_paths{i}, '');
end
However, the text files have headers and I am having trouble removing them. So my question is what can I do to import them with commands to remove the header and import all the files.
Thanks.

답변 (1개)

Chunru
Chunru 2021년 7월 29일

0 개 추천

Use "headerlines" parameter to ignore the header lines:
data = textread(file_paths{i}, format, 'headerlines', headlineNum);

댓글 수: 2

SAZZAD HOSSAIN
SAZZAD HOSSAIN 2021년 7월 29일
Hi Chunru,
Thanks for the suggestion. I tried the command line and its saying "too many output arguments". I am using Matlab 2018a if that matters at all.
Chunru
Chunru 2021년 7월 30일
Post a small fraction of data file.

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

카테고리

도움말 센터File Exchange에서 Data Import and Export에 대해 자세히 알아보기

질문:

2021년 7월 29일

댓글:

2021년 7월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by