printf newline not working

4 visualizaciones (últimos 30 días)
Wyatt Rees
Wyatt Rees el 26 de Abr. de 2016
Respondida: Walter Roberson el 26 de Abr. de 2016
I am trying to write a newline to a .txt file in between each string in a set of strings. The code I currently have is:
fileID = fopen('hex.txt','w');
fprintf(fileID,'%s\r\n',hex_str);
fclose(fileID);
where hex_str is a 1x20 array of strings. I have also tried using \n instead of \r\n but that does not work either. I've also tried using 'wt' instead of 'w' in the permission field of fopen, but that did not help either. I think this may be an issue with using the built in notepad on my machine (Windows 7). I have downloaded notepad++, but how do I get matlab to use this software when writing instead of the builtin notepad?

Respuestas (2)

MHN
MHN el 26 de Abr. de 2016
I could not understand the question. You have 20 words that you would like to put a new line after each of them, is it correct? could you upload your hex.txt and hex_str. Or at least an example of it.

Walter Roberson
Walter Roberson el 26 de Abr. de 2016
fileID = fopen('hex.txt','w');
fprintf(fileID,'%s\r\n',hex_str{:});
fclose(fileID);

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by