how to convert a matrix into excel format in MATLAB 2018B
16 次查看(过去 30 天)
显示 更早的评论
how to convert a matrix into excel format. I have used writetable command, its not working..
回答(1 个)
Sahithi Metpalli
2020-3-5
Hi,
You cannot directly write a matrix to excel in MATLAB2018b.You should first convert matrix to table and then use the writetable function as shown in the code below
table =array2table(matrix)
writetable(table,'filename.xls')
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!