Write cell arrays to matlab

1 回表示 (過去 30 日間)
Bas
Bas 2015 年 9 月 17 日
コメント済み: Bas 2015 年 9 月 17 日
Hi,
I have a matrix A containing 1x24 cells. Each cell contains data cx1, with c being variable. So, A{1} is 2360x1, while A{2} is 2344x1 etc.
Now I want each cell to be written in a separate sheet in excel. How can I do this? I tried several approaches but get errors all the time..
Anyone knows how to do this?

採用された回答

Walter Roberson
Walter Roberson 2015 年 9 月 17 日
for K = 1 : length(A)
thissheetname = sprintf('Sheet#%02d', K);
xlswrite('YourFile.xls', A{K}, thissheetname);
end
  1 件のコメント
Bas
Bas 2015 年 9 月 17 日
Thanks this works :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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