Why is the excel file I export from SIMULINK to MATLAB corrupted?
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Ankitha Kollegal Arjun
on 8 Feb 2017
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 Comments
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!