Binary Bit Masking
41 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
What is the easiest way to bit mask a 16 bit binary value to decode different fields (2 bit, 4 bit, etc) with it? Thanks
0 Commenti
Risposta accettata
Più risposte (2)
Walter Roberson
il 16 Nov 2011
You could use bitand() and bitshift() too. Or just bitget().
Watch out for the bit numbering order that MATLAB uses.
3 Commenti
thinnawat chumpuwiset
il 17 Ago 2018
i'm still confuse about bitget(), can you describe more detail?
Fangjun Jiang
il 17 Ago 2018
>> dec2bin(7,8)
ans =
'00000111'
>> bitget(7,1:8)
ans =
1 1 1 0 0 0 0 0
0 Commenti
Vedere anche
Categorie
Scopri di più su Functions for Programming and Data Types in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!