Using fscanf does not output a two-dimensional array

4 次查看(过去 30 天)
I would like to my data stored in a text file (Bmatrixu8.txt) converted to an size [Inf, 3] array.
While this should be easy, my code only seems to output an empty array.
The only thing I could see going wrong is is an incorrect 'formatSpec', but I don't notice anything wrong with it.
Just in case this is relevant, I was having issues earlier with the encoding of my text file. Because it was in Unicode, whitespace appeared in between every character. This was fixed by changing the encoding to UTF-8.
Any ideas on what could be going on?
clc; clear;
fileID = fopen('Bmatrixu8.txt','r');
A = fscanf(fileID,'%d,%d,%d\n');
fclose(fileID);
  1 个评论
Stephen23
Stephen23 2019-8-9
编辑:Stephen23 2019-8-9
407,-4754,1992
-214,--212,-6273,3147 % <- How do you expect this line to be parsed ?
1130,-8295,3653
"This was fixed by changing the encoding to UTF-8."
Better to simply specify the file encoding.

请先登录,再进行评论。

回答(1 个)

Sai Bhargav Avula
Sai Bhargav Avula 2019-8-12
As mentioned by Stephen Cobeldick the text file has 4 elements in the 353th line and cannot be parsed. Also, try using the textscan() function which provides better flexibility over the formatted data and handling the delimiters and empty value conversions.
Refer the following link for better understanding of the textscan function.
Hope this helps !

类别

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