fprintf: writing text lists to .txt files
Mostrar comentarios más antiguos
I need some help exporting some text lists in cell arrays to .txt functions. I have a list of names in an n x 1 array, called 'assets'. I would like to export it to a .txt file ('assets.txt'). My code currently states:
fid = fopen('assets.txt', 'w');
for row = 1:length(assets)
fprintf(fid, '%s\n', assets(row));
end
fclose(fid)
I get this error message: "Function is not defined for 'cell' inputs." What am I doing wrong?
Respuesta aceptada
Más respuestas (2)
Grzegorz Knor
el 28 de Oct. de 2011
Probably:
fprintf(fid, '%s\n', assets{row});
William
el 28 de Oct. de 2011
0 votos
Categorías
Más información sobre Standard File Formats en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!