Help on conversion of data
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
Walter Roberson
2015 年 10 月 21 日
1 件のコメント
Walter Roberson
2015 年 10 月 21 日
dec2bin( floor(A(:,1) * 16) * 256 + floor(A(:,2) * 16) * 16 + floor(A(:,3) * 16), 12) - '0'
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

