Why is MATLAB unable to read an ASCII file containing a large amount of data in a single line using the CSVREAD function?

조회 수: 2 (최근 30일)
Why is MATLAB unable to read an ASCII file containing a large amount of data in a single line using the CSVREAD function?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2009년 6월 27일
This bug has been fixed in Release 14 Service Pack 2 (R14SP2). For previous releases, please read below for any possible workarounds:
This has been verified as a bug in MATLAB in the way that the CSVREAD function handles large data files.
Currently, as a workaround, try the following code:
fid = fopen('filename');
a = textscan(fid,'%n','delimiter',',');
This reads the file rather quickly and creates an array of doubles. The difference is that when CVSREAD reads the same file, it tries to have a format string with thousands of fields, one for each line of data.

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by