Help on conversion of data
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Walter Roberson
le 21 Oct 2015
1 commentaire
Walter Roberson
le 21 Oct 2015
dec2bin( floor(A(:,1) * 16) * 256 + floor(A(:,2) * 16) * 16 + floor(A(:,3) * 16), 12) - '0'
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!