Help on conversion of data
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
TastyPastry
le 20 Oct 2015
Can you post a file showing more specifically what the formatting of the file, as well as the format are?
Image Analyst
le 20 Oct 2015
What data do you have for input? Integers? In what range? What does "and take it as input" mean to you? (It means nothing to me, except maybe to pass it to a function as an input argument.)
Amit Mishra
le 21 Oct 2015
Walter Roberson
le 21 Oct 2015
12 bits per row? As in a numeric array which is something high by 12 wide? Or is the 12 bits to be converted into a single integer in the range 0 to 4095 ?
Amit Mishra
le 21 Oct 2015
Amit Mishra
le 22 Oct 2015
Réponses (2)
Walter Roberson
le 21 Oct 2015
0 votes
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'
With 4 bits you can code 32 numbers, like the integers from 0 to 31. You cannot convert double precision numbers between 0 and 1 to 4 bit without loss. One way to convert would be to multiply by 32 and then use dec2bin.
6 commentaires
Amit Mishra
le 21 Oct 2015
Thorsten
le 21 Oct 2015
Please post the cmtfinal.xlsx and your MyNum2Bin function so we can have a look.
Amit Mishra
le 21 Oct 2015
Thorsten
le 21 Oct 2015
Please post the xls file and your code to call MyNum2Bin.
Amit Mishra
le 21 Oct 2015
Amit Mishra
le 22 Oct 2015
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

