how to read a file and convert to matrix format
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i am reading a file which has the values in the form
v -0.141202 5 5
v 3 5 5
v 4 5 5
i want to convert this in the form of a cell ignoring space ie in the form of 3X4 matrix
Thanks in advance
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 28 de Sept. de 2012
fid = fopen('filename.txt');
out=textscan(fid,'%s')
fclose(fid);
out=reshape(out{:},4,[])'
2 comentarios
Azzi Abdelmalek
el 1 de Oct. de 2012
for jj =1:4
fid=fopen(sprintf('Secret1%d.obj',jj),'r' )
out=textscan(fid,'%s')
fclose(fid);
res{jj}=reshape(out{:},4,[])'
end
Más respuestas (1)
Sumit Tandon
el 28 de Sept. de 2012
There are several options - e.g. using Import Wizard or TEXTSCAN command.
0 comentarios
Ver también
Categorías
Más información sobre Large Files and Big Data 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!