printf newline not working

조회 수: 4 (최근 30일)
Wyatt Rees
Wyatt Rees 2016년 4월 26일
답변: Walter Roberson 2016년 4월 26일
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?

답변 (2개)

MHN
MHN 2016년 4월 26일
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 2016년 4월 26일
fileID = fopen('hex.txt','w');
fprintf(fileID,'%s\r\n',hex_str{:});
fclose(fileID);

카테고리

Help CenterFile Exchange에서 Programming Utilities에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by