save table as space delimted text file, not tab delimited
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Marty Dutch
el 3 de Mayo de 2014
Respondida: Azzi Abdelmalek
el 3 de Mayo de 2014
Dear experts,
I want to save a table as a space delimted file. In the code below I save the table as tab delimted (\t). How can I the save the imput as space delimited?
table = [1 2 12;2 1 14;3 1 15]
%output file
fid = fopen('subjectlist.txt','wt');
for ii = 1:size(table,1)
fprintf(fid,'%.0f\t',table(ii,:));
fprintf(fid,'\n');
end
fclose(fid);
Thanks in advance!
Marty
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 3 de Mayo de 2014
Add one space or more after %.0f
fprintf(fid,'%.0f ',table(ii,:))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables 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!