Regarding "fwrite" in matlab
Mostra commenti meno recenti
The following lines are a part of my code.
fid=fopen('M1.txt','w');
fwrite(fid,k,'int16');
fclose(fid);
I would like know how to include a delimiter. I need the .txt file to have 16 bits per line since this data has to be read line by line for further processing.
Kindly help me with this at the earliest.
Thank you
Risposta accettata
Più risposte (1)
Titus Edelhofer
il 19 Mar 2012
Hi Aparna,
are you sure you want to use fwrite? With fwrite you write binary data (open your M1.txt with an editor that can display HEX data). There is no "line" in a text file usually. Could it be that you want to use fprintf instead?
If this is not the case, you could just use fprintf for the delimiter, i.e., add
fprintf(fid, '\n');
Hope this helps,
Titus
8 Commenti
Aparna
il 19 Mar 2012
Titus Edelhofer
il 19 Mar 2012
Hi Aparna,
that's what I meant: I'm pretty sure you don't want the bits but "numbers". Try
k = 42;
fprintf(fid, '%d\n', k);
Does this what you need?
Titus
Geoff
il 20 Mar 2012
Is the xilinx expecting Windows newlines? In that case you'll have to output CRLF, not just LF:
fprintf(fid, '%d\r\n', k)
Titus Edelhofer
il 20 Mar 2012
Or use
fid=fopen('M1.txt','wt');
(note the 'wt' instead of 'w') to handle this automatically.
Titus
Walter Roberson
il 20 Mar 2012
Not quite, Titus. Using 'wt' outputs CRLF only if you are running on an MS Windows operating system, which is information we are not given. Geoff's suggestion of \r\n with 'w' is needed if the generating code might be running on something other than MS Windows.
Aparna
il 20 Mar 2012
Asadullah
il 1 Ott 2012
Modificato: Walter Roberson
il 1 Ott 2012
Try %u instead of %d. visit http://www.mathworks.co.uk/matlabcentral/answers/32703-regarding-fwrite-in-matlab to read more about it.
Walter Roberson
il 1 Ott 2012
That link leads to this question.
Categorie
Scopri di più su AMD FPGA and SoC Devices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!