How i can concatenate the binary values of each two cell arrays into one binary value cell array?
5 ビュー (過去 30 日間)
古いコメントを表示
Hello matlab community, I want to concatenate the binary values of each two cell arrays into one binary value cell array, for ex.
as = {'1011','0001','0100','0110','1111','0111'}
asc= {'10110001','01000110','11110111'}
0 件のコメント
採用された回答
Dyuman Joshi
2022 年 11 月 26 日
as = {'1011','0001','0100','0110','1111','0111'};
str=strcat(as(1:2:end),as(2:2:end))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!