Why won't \n give me a new line?
古いコメントを表示
I am trying to write my data to a text file but the usual \n is not giving me a new line!
fid1 = fopen(filedesignation,'w');
fprintf(fid1,'%s, ',title1);
fprintf(fid1,'%4.2f, %4.2f, %4.2f, %4.2f, %4.2f\n',DataMatrix);
fclose(fid1);
When I try printing this to the command window, the \n works, but not when I try and write to a file. Why?!
How can I get a line return in my text file if this doesn't work?
6 件のコメント
Stephen23
2018 年 2 月 7 日
The simplest solution is to open the file in text mode:
fid1 = fopen(filedesignation,'wt');
^ you need this!
On Windows this will automatically convert all \n to the required newlines characters.
Mohammad Bhat
2018 年 2 月 25 日
That helped me too, thanks ...
Shahrokh Abbasi-Rad
2018 年 9 月 7 日
Awesome. the problem was only a 't' :))))
Fernando Rojano
2019 年 4 月 6 日
Great!
Priya Mittal
2019 年 9 月 4 日
Change the 'w' parameter in fopen to 'wt'. Worked for me.
Jan
2019 年 9 月 4 日
Fortunately even NotePad shipped with modern Windows 10 is able to display \n correctly now.
採用された回答
その他の回答 (5 件)
Cedric
2013 年 8 月 7 日
10 投票
You will need \r\n for producing a carriage return and a new line. This is a well documented issue between UNIX-based and Windows operating systems.
3 件のコメント
Yang Hu
2018 年 11 月 30 日
Brilliant
Keqin Xu
2019 年 1 月 11 日
Files created this way cannot be properly read using ...'deliminator','\n'...
An example is attached.
Walter Roberson
2019 年 1 月 11 日
the success is going to depend on which command you are passing that parameter to and potentially on how you open the file.
Generally telling a function that the delimiter is \n is an interface contract: you are making a promise about the file and the function is permitted to take you at your word.
My guess looking at that file is that you would use
parts = regexp( fileread('Run_01.txt'), '\r?\n', 'split');
if isempty(parts{end})
parts(end) = [];
end
that will work whether the file has cr lf or lf only. It will not work for cr only though. This code will not remove interior empty lines. The if at the bottom is to handle the fact that if the file ends in newline then the split process thinks that there is an empty line after it. Files are permitted to either just end without a newline or else to end in a newline (that is to say that there is no standard as to whether newline is a line separator or else a line terminator .)
Camilo Rocha
2019 年 4 月 25 日
You just have to put 'wt' when you call fopen function
fid1 = fopen(filename,'wt')
Roxanne de la Garza
2018 年 2 月 3 日
1 投票
I put my \n at the beginning instead of the end and it worked for me. fprintf(fid1,'\n %4.2f, %4.2f, %4.2f, %4.2f, %4.2f',DataMatrix);
2 件のコメント
Matthes Müller
2018 年 2 月 7 日
Worked for me also, thank you so much!
ustin yanu
2020 年 4 月 6 日
編集済み: ustin yanu
2020 年 4 月 6 日
worked for me too, thx, wonder why?
i have this
elseif x<1300
a=x-1200;
b = [ fix(a/1e+2)-1E+2*fix(a/1e+4) rem(a, 1e+2)];
fprintf('\nYou entered %d:%d%d',b)
fprintf('\nThe equivalent time based on a 12-hour clock is %d:%d%d',b)
disp('PM')
Aasim
2013 年 11 月 13 日
0 投票
Works well.. Thanks!
Milad Hasani
2022 年 8 月 22 日
As a suggestion, you can use:
\newline
1 件のコメント
\newline is for Latex, and will not work for fprintf() or sprintf()
fprintf('abc\newlinedef')
カテゴリ
ヘルプ センター および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!