How can I merge 4*4 cell arrays to form a 256*256 cell array?
조회 수: 3 (최근 30일)
이전 댓글 표시
Actually I took a plaintext image,converted that to 8 bit binary and then did DNA mapping. After that i splitted that into 4*4 cell arrays(each element of that cell looks like 'ATCG' or something ) and did some operation. Now I want to merge all those cells to get the final 256*256 cell?
댓글 수: 5
답변 (2개)
Walter Roberson
2015년 9월 22일
cell256 = [small_mat1{1}, small_mat1{3}; small_mat1{2}; small_mat1{4}];
참고 항목
카테고리
Help Center 및 File Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!