How To Get Number Of Columns in Non-Rectangular Array of Data for textscan Function
이전 댓글 표시
Hello,
I am currently using the following line of code for extracting data from a csv file, which contains non-rectangular array of data
C = textscan(fileID, repmat('%f',[1 22]), Delimiter, ',', 'EmptyValue', NaN);
What I would love to do is replace that 22 with a variable. Right now I need to check the csv, count the columns (currently, 22) and enter that number manually. Is there a way I could automate that and replace 22 with a variable, eliminating the need to look in the csv file in the future?
Thanks
답변 (1개)
Star Strider
2017년 4월 19일
0 개 추천
Since your files don’t appear to have header lines, the xlsread or csvread functions might be more appropriate than textscan to import your files.
댓글 수: 4
EvanThomas
2017년 4월 19일
편집: EvanThomas
2017년 4월 19일
Star Strider
2017년 4월 19일
My impression is that they should be able to. I’ve not tried them with your files, so I don’t know how the functions would work with them.
Also, textscan may allow you to read beyond the column limits. When I’ve done that, it simply filled the fields with no data as empty cells (although it is best to fill them with NaN values as you have instructed it to do, since you can then use cell2mat to convert them to numeric matrices). So you may be able to use textscan without alteration, then parse the cell arrays it returns afterwards.
It’s probably best to experiment to see what functions work best with your data. I would try them all on a few representative files to see what the results are.
EvanThomas
2017년 4월 19일
편집: EvanThomas
2017년 4월 19일
Star Strider
2017년 4월 19일
My pleasure.
I’ve found textscan to be rather robust to (my) stretching it beyond its intended limits. In any event, you can always comment your code (good practice anyway) to check your textscan call if your code starts behaving strangely.
카테고리
도움말 센터 및 File Exchange에서 Large Files and Big Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!