How to read in a file in its bit representation
Mostra commenti meno recenti
Hi everyone,
I was wondering whether I can read in any file from disk in its binary representation, so in its representation of "0"s and "1"s as it is stored on my disk.
Although I thought this may be trivial, I can only find commands for reading in data itself stored in some given format.
Can anyone help?
All the best to you Matlab wizards, Florian
Risposta accettata
Più risposte (1)
Walter Roberson
il 13 Apr 2013
bits = fread(fid, '*ubit1', 'ieee-le');
Adjust the 'ieee-le' to 'ieee-be' if you prefer (this controls whether the bits will be output from least significant first or from most significant first)
Categorie
Scopri di più su Whos 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!