How combine <16x1 cell> and <16x1 cell> into <32x1 cell> by using matlab
조회 수: 2 (최근 30일)
이전 댓글 표시
I have some images from each image product 16x1 cell so how i can combined each 16x1 cell with next 16x1 cell and with next 16x1 cell ........etc
댓글 수: 0
채택된 답변
Walter Roberson
2017년 6월 15일
[Cell_1; Cell_2; ...]
or
reshape( [Cell_1, Cell_2, ...], [], 1)
Depending if you want the pattern to be AAAAAAAAAAAAAAAABBBBBBBBBBBBBBB or ABABABABABABABABABABABABABABABAB
댓글 수: 7
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!