Why is the excel file I export from SIMULINK to MATLAB corrupted?
2 次查看(过去 30 天)
显示 更早的评论
So I have a SIMULINK model and I export it to MATLAB. I do this by using the "To Workspace" block. I go to MATLAB and export the data to an excel file. I do this by running a simple command:
A=[tout,y];
save filename.xls A
Every time I go an try to open the excel file in Excel 2016, it deems the file corrupt and a bunch of gibberish appears on the screen. Any thoughts to why this happens?
0 个评论
回答(1 个)
Ankitha Kollegal Arjun
2017-2-8
Hi Justin,
I could reproduce the issue you are facing. The issue is with the way in which you are saving the data to the Excel file. "xlswrite" should be used instead of "save".
That is, instead of:
save filename.xls A
Use:
xlswrite('filename.xls',A);
Please refer the documentation for more information on using "xlswrite":
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!