Three-dimensional matric and Excel
1 回表示 (過去 30 日間)
古いコメントを表示
How can I send a Three-dimensional matrix to the Excel?
1 件のコメント
採用された回答
KSSV
2019 年 6 月 18 日
How about writing each matrix in a sheet.
A = rand(10,10,5) ;
for i = 1:5
xlswrite('test.xlsx',A(:,:,i),i)
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!