MATLAB: Use dlmwrite without \n

dlmwrite

I am trying to use dlmwrite. My foo.obs has 3 rows of text before my data starts: 2 lines of title, and then my header line. I want each line to start at a new line, but then my header line to be tab delimited.
I don't want to use \n as it will cause a ^M to show up when I open the file on Unix.
The following code almost does that, expect that my headers also goes into different lines. I want all my header in the same line and tab delimited.
fnam='foo.obs';
title1 = {'Line 1'};
title2= {'Here is a new line'};
hdr={'H1','H2','H3'};
txt=sprintf('%s\n',title1{:},title2{:},hdr{:});
txt(end)='';
dlmwrite(fnam,txt,'');
Any ideas would be greatly appreciated.
Thanks

Best Answer

dlmwrite() does not support mixing text with numeric values. It does not support text headers followed by numeric data.
The workaround is to create the file ahead of time writing whatever header you want to it. Then dlmwrite() the numeric data specifying the '-append' option.
The default line terminator for dlmwrite is \n with no carriage return, and it opens the output for binary not for text so it does not automatically use \r\n on text files if you are running on MS Windows. If you want \r\n used as the end of line then you need to use the option 'newline', 'pc' .
\n does not become ^M on Unix: only \r shows up as ^M. If you open a file for writing on MS Windows as a text file (e.g. you specified 'wt' or 'at' but not just 'w' or 'a'), then each \n will be converted to \r\n by the I/O library. This does not apply on OS-X or Linux (Unix systems), and does not apply to dlmwrite() because dlmwrite() opens the files in binary rather than as text.