How to convert cell of array containing cell of array (n×n) order into a Single cell of arrays (n×n) order??
2 ビュー (過去 30 日間)
古いコメントを表示
Hello,I Have been trying to convert a cell of arrays containing cell of arrays into a single cell(both of same order N×n). I tried using "Newcellarray = cellfun('func',Existing cell array);". However, the array is not been able to generate. Request if someone may guide for the above said problem. Thanks in advance. ;)
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2023 年 4 月 30 日
cell_1={3,4,5;7,8,9}
cell_2={13,14,15;17,18,19}
new_cell=[cell_1,cell_2]
new_cell=[cell_1;cell_2]
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!