フィルターのクリア

Export nested cell array to excel

9 ビュー (過去 30 日間)
aaammm
aaammm 2023 年 3 月 16 日
編集済み: Vilém Frynta 2023 年 3 月 16 日
I have a nested cell array where each cell has three columns but different number of rows. I need to export the values to excel keeping the columns intact but using writecell gives me an error 'Nested cell arrays are not supported'. How can I export the values to excel?
Here's a quick example:
A1 = {1,1,1};
A2 = {2,2,2;2,2,2};
A3 = {3,3,3;3,3,3;3,3,3;};
A = {A1, A2, A3};
writecell(A, 'mydata.xlsx');
Error using writecell
Nested cell arrays are not supported.

回答 (1 件)

Vilém Frynta
Vilém Frynta 2023 年 3 月 16 日
編集済み: Vilém Frynta 2023 年 3 月 16 日
You could just try to avoid using the cells, and just create one big matrix (array) with NaNs and then fill in your data. However, this would be an easy workaround just in case you have just these few columns and numbers. If you have much more numbers and columns, it could be bit trickier.
See my example:
m = NaN([3 6])
m = 3×6
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
m(1:3,1) = [1 1 1]
m = 3×6
1 NaN NaN NaN NaN NaN 1 NaN NaN NaN NaN NaN 1 NaN NaN NaN NaN NaN
... and go on.
Hope I helped.

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by