How can I export .mat file to .xls file?
2 ビュー (過去 30 日間)
古いコメントを表示
How can I export .mat file to .xls file? I am using xlswrite('filename.xls') but not working. I have 50x50 deta. Kindly help me.
3 件のコメント
Infinite_king
2024 年 8 月 5 日
You have to pass the matrix as input to 'xlswrite' function. For example - xlswrite(filename,matrix_name).
回答 (1 件)
Cris LaPierre
2024 年 8 月 5 日
編集済み: Cris LaPierre
2024 年 8 月 5 日
I'd recommend using writematrix (homogenous data) or writetable (for table data type) after first loading the mat file variable to the MATLAB workspace (see load).
1 件のコメント
Star Strider
2024 年 8 月 5 日
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!