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!

