Help on conversion of data
显示 更早的评论
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 个评论
TastyPastry
2015-10-20
Can you post a file showing more specifically what the formatting of the file, as well as the format are?
Image Analyst
2015-10-20
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
2015-10-21
Walter Roberson
2015-10-21
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
2015-10-21
Amit Mishra
2015-10-22
回答(2 个)
Walter Roberson
2015-10-21
0 个投票
1 个评论
Walter Roberson
2015-10-21
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 个评论
Amit Mishra
2015-10-21
Thorsten
2015-10-21
Please post the cmtfinal.xlsx and your MyNum2Bin function so we can have a look.
Amit Mishra
2015-10-21
Thorsten
2015-10-21
Please post the xls file and your code to call MyNum2Bin.
Amit Mishra
2015-10-21
Amit Mishra
2015-10-22
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

