How to form a decimal vector for a cell array
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
hello, i have a cell with size 1*1624..now, i want to split these 1624 binary elements into each 8 binary elements ,and then these 8 elements must convert into a decimal number and store in an array..so,my final output must be an array with size 203(bcz 8*203=1624)..can you help me how to do???
8 件のコメント
Derived from this question:
Jyothi Alugolu
2017 年 2 月 8 日
Jyothi Alugolu
2017 年 2 月 8 日
José-Luis
2017 年 2 月 8 日
Are the "binary elements" characters? If not, what are they?
Jyothi Alugolu
2017 年 2 月 8 日
José-Luis
2017 年 2 月 8 日
Yes but the 0's and 1'1 can be stored as numbers or as characters.
Jan
2017 年 2 月 8 日
@Jyothi: Please post a small example of the input with e.g. 16 elements and the wanted output.
回答 (1 件)
adi kul
2017 年 2 月 8 日
Try to use reshape. Here is quick code:
m=1:1624;
n=reshape(m,203,8);
Modify it as per your requirements
1 件のコメント
Jyothi Alugolu
2017 年 2 月 8 日
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!