Wrting binary data to text file
Afficher commentaires plus anciens
Hey everybody, I have some binary information, like a=[11110000 00001111 00000000 11111111], I want to write them to a text file. i tried with fprintf and fwrite but i couldn't! anybody has such a experience? Thanks a lot in advance. best.
3 commentaires
Walter Roberson
le 9 Jan 2014
That first entry of "a": is it stored as decimal eleven million, one hundred and ten thousand? And size(a) is 1 x 4 ? Or is it stored as [1 1 1 1 0 0 0 0; 0 0 0 0 1 1 1 1; etc] and size(a) is 4 x 8? Or is it stored as {'11110000' '0000111' etc} ?
mahdi safarzadeh
le 9 Jan 2014
mahdi safarzadeh
le 9 Jan 2014
Réponses (2)
Huang Andong
le 9 Jan 2014
0 votes
a=[11110000; 00001111; 00000000; 11111111]; dlmwrite('C:\Users\dell\Desktop\a.txt',a);
1 commentaire
mahdi safarzadeh
le 9 Jan 2014
Walter Roberson
le 9 Jan 2014
t = cellstr(dec2bin(a, 8));
fid = fopen('a.txt', 'wt');
fprintf(fid, '%s\n', t{:});
fclose(fid);
3 commentaires
mahdi safarzadeh
le 14 Jan 2014
Walter Roberson
le 14 Jan 2014
That is not going to work.
>> ['11111111' , '00000000' , '10101010']
ans =
111111110000000010101010
Remember, [] is concatenation for strings. {} is for string arrays.
mahdi safarzadeh
le 14 Jan 2014
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!