MATLAB r2016b problem with cvsread

조회 수: 2 (최근 30일)
David Winthrop
David Winthrop 2018년 3월 10일
댓글: Walter Roberson 2018년 4월 9일
This makes no sense to me whatsoever. MATLAB will not read the requested data from the file even though it reads the same data from an almost identical file. MATLAB seems to be troubled by the column adjacent to the column from which I am requesting the data. WHY???
I did not ask MATLAB to read that column, as the image clearly shows.
I have included a screenshot of the error and both files. How can I get MATLAB to read these files?
  댓글 수: 4
Von Duesenberg
Von Duesenberg 2018년 3월 10일
Yes. I tend to use readtable because it does a good job at detecting the input format. Anyway, I'm afraid I can't help you out.
David Winthrop
David Winthrop 2018년 3월 10일
I will have to look into that. Thanks for the suggestion.

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

답변 (1개)

Jan
Jan 2018년 3월 12일
The documentation of csvread explains clearly:
The file can only contain numeric values.
'null' is not a numeric value. Even if you are not interested in this column, it must be read and parsed to proceed to the next value. But it cannot be parsed as a number, such that csvread is not the appropriate tool for this file.
  댓글 수: 2
David Winthrop
David Winthrop 2018년 4월 9일
That is a serious design flaw.
Walter Roberson
Walter Roberson 2018년 4월 9일
Since roughly 2015b-ish, csvread() can handle text in leading lines that you are skipping with the R argument, and it can handle text in leading columns that you are skipping with the C argument, but every row and column after that must be pure text.
The work-around is to use xlsread(), readtable(), or textscan()

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

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by