필터 지우기
필터 지우기

load -ascii : inconsistent behavior

조회 수: 3 (최근 30일)
Hal Caswell
Hal Caswell 2012년 12월 10일
I am trying to read a tab-delimited ascii file. It has 99 rows and 5 columns.
In R2012b, the command
load FILENAME.ext -ascii
correctly loads the file, producing a variable FILENAME of size 99 x 5.
On a different machine, with R2012a, the same command applied to the same file produces a variable FILENAME of size 1 x 495.
That is, under R2012a the load command is reading the file as a single line of values, rather than as a 2-dimensional array. Strangely, if I use the Import Wizard in R2012a, it immediately recognizes FILENAME as containing a 99 x 5 array of tab-delimited values.
I need to have this code work under both versions of Matlab. Any explanations for the inconsistent behavior?
FWIW the code also worked under earlier versions.
Thanks. Hal

채택된 답변

Jan
Jan 2012년 12월 10일
편집: Jan 2012년 12월 10일
Read ASCII files with LOAD had a bug in 2012a, when the old MacOS-9 linebreaks are used. Then load the file using fileread, replace char(13) by char(10) and save the resulting string with fopen + fwrite.

추가 답변 (1개)

Image Analyst
Image Analyst 2012년 12월 10일
Try dlmread() or importdata() instead.
  댓글 수: 1
Hal Caswell
Hal Caswell 2012년 12월 10일
It looks like those would indeed work, and would be fine if I was just starting out. But I've used load -ascii for a long time and would prefer to not have to change the command any time I go back to use older code.

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

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by