How can I export .mat file to .xls file?
3 次查看(过去 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!