我有一个包含 1x4 单元格的单元格数组
A=
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
<1x4 cell> <1x4 cell> <1x4 cell>
我正在寻找的是制作一个包含以下内容的单元格数组
B={'str1','str2','str3','str4';cell2mat(A{1,1})}
单元格数组来自另一个操作,其中行和列的大小可能会有所不同,所以我想知道天气是否可以使用 for 循环或类似的东西自动化。
编辑:对不起,我想要一个数组B
:
B{m,n}={'str1','str2','str3','str4';cell2mat(A{m,n})}
其中m
和n
是元胞数组的行和列A
。
所以可以说我有类似的东西
A=
[1 2 3 4] [4 5 6 7]
[8 9 10 11] [11 12 13 14]
我想获得B
表格的输出
B{1}=
'str1' 'str2' 'str3' 'str4'
1 2 3 4
8 9 10 11
B{2}=
'str1' 'str2' 'str3' 'str4'
4 5. 6 7
11 12 13 14