0

我有一个带有嵌套单元格的变量:

hello =   
    '8'     {1x3 cell}    {1x3 cell}
    '22'    {1x3 cell}    {1x3 cell}
    '97'    {1x3 cell}    {1x3 cell}

如何使用 MATLAB 将其写入单个 Excel 文件,例如 xlswrite('file',hello)

4

1 回答 1

0

只是看了一会儿。这是我对示例问题的解决方案。

清除所有;cl ;

d = {{'Number'},{'Class A'},{'class B'};{'007'},{'Test One'},{'Test Two'}};

对于 i = 1:大小(d,1)

for j = 1:size(d,2)

    if iscell(d(i,j))

        d(i,j) = d{i,j};

    end
end

结尾

xlswrite('文件地址',d);

于 2013-03-27T11:33:42.523 回答