How can you rearrenge a large datafile to....

8 visualizaciones (últimos 30 días)
Isa Ilkan Duran
Isa Ilkan Duran el 7 de Mayo de 2015
Editada: Ingrid el 7 de Mayo de 2015
Hi guys
I have a large .txt file witch I load in matlab (x,y,z coordinates for a ship), but the point is I will use matlab to generete the point so it is an input into another software. The other sofware can't handle all the points in the .txt file, so I need to have a code who can rearrenge the .txt file into a smaller one. Otherwise it is very time consuming doing manually. I'm thinking something like take the every 50. set of x,y,z and make a new matrix.
Hope you understand my issue...

Respuesta aceptada

Ingrid
Ingrid el 7 de Mayo de 2015
instead of using load, you could use textscan to read in the txt file
endNotReached = true;
counter = 1;
fid = fopen(stringTextLocation);
while endNotReached
rawData = textscan(fid,'%f%f%f', 50);
if size(rawData,1) < 50
endNotReached = false;
end
fidWrite = fopen(['data' num2str(counter) '.txt'],'w');
fprintf(fidWrite,'%f%f%f\n',rawData);
fclose(fidWrite)
counter = counter + 1;
end
fclose(fid)
  2 comentarios
Isa Ilkan Duran
Isa Ilkan Duran el 7 de Mayo de 2015
Excellent !!!
Ingrid
Ingrid el 7 de Mayo de 2015
Editada: Ingrid el 7 de Mayo de 2015
by the way, whe are not all guys here ;-)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by