Help on conversion of data
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Please help me on it
- if i have 3 column of data
- convert the data to binary 4 bit
- concat it to one data to make 12 bits
- transpose the concated data
- and take it as input.
Thanks
6 Commenti
Risposte (2)
Walter Roberson
il 21 Ott 2015
1 Commento
Walter Roberson
il 21 Ott 2015
dec2bin( floor(A(:,1) * 16) * 256 + floor(A(:,2) * 16) * 16 + floor(A(:,3) * 16), 12) - '0'
Vedere anche
Categorie
Scopri di più su Data Type Conversion 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!

