Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

When I read a matrix stored in a text file, the values are shuffled about

1 visualización (últimos 30 días)
laurie
laurie el 17 de Mzo. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
fid = fopen('mat.txt','r');
matrix = fscanf(fid,'%g',[6 4]);
Could someone explain why this happens? or suggest a better method?
The matrix consists of 1's and 0's

Respuestas (1)

Image Analyst
Image Analyst el 17 de Mzo. de 2015
Try fread() instead of fscanf(). Not sure that's the problem though. Are you sure you're not confusing (x,y) with (row, column)? That's the error most novices make. Remember (row, column) is (y,x) NOT (x,y).
  2 comentarios
laurie
laurie el 17 de Mzo. de 2015
Matrix in file:
0 1 0 0
1 1 0 0
1 1 1 0
0 1 1 1
0 1 0 1
0 0 0 1
fscanf:
0 0 0 0
1 0 1 1
0 1 1 0
0 1 1 0
1 1 0 0
1 0 1 1
Image Analyst
Image Analyst el 17 de Mzo. de 2015
Editada: Image Analyst el 17 de Mzo. de 2015
If you're still having a problem, attach the file with the paper clip icon. Or why not use dlmread() with a delimiter of space or tab, whichever it is?

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by