Using fscanf does not output a two-dimensional array

4 visualizaciones (últimos 30 días)
Ryoma Molnar
Ryoma Molnar el 9 de Ag. de 2019
Respondida: Sai Bhargav Avula el 12 de Ag. de 2019
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 comentario
Stephen23
Stephen23 el 9 de Ag. de 2019
Editada: Stephen23 el 9 de Ag. de 2019
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.

Iniciar sesión para comentar.

Respuestas (1)

Sai Bhargav Avula
Sai Bhargav Avula el 12 de Ag. de 2019
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 !

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by