Export Data from a Structure which contains double timeseries data to Excel ... Example Data Provided...

12 views (last 30 days)
Hello,
I have:
Struct named 'CarData', contains double timeseries fields, named 'Left' and 'Right' each has with 20 columns and over 10-20,000 rows.
I wish to run a script to export CarData.Left into an new Excel sheet (xlswrite('something.xlsx'), I've read various pages of help and am struggling to address the data fields inside as well as extracting all 20 columns.
Can someone please facilitate, having the field names if of no importance. I only need the numerical data without concatenating vertically/horizontally.
Here are some of the pages I've looked into: https://uk.mathworks.com/matlabcentral/answers/278751-how-to-extract-data-from-structure-efficiently https://uk.mathworks.com/matlabcentral/fileexchange/22510-struc2xls https://stackoverflow.com/questions/25948371/how-to-write-a-structure-to-excel-in-matlab struct2cell etc
I'm in need to do with without the use of plug-ins, I've attached an example version of the MATLAB struc to help understand what I have.

Accepted Answer

Cedric
Cedric on 17 Oct 2017
Edited: Cedric on 17 Oct 2017
Here is one way if you want to create two worksheets "Left" and "Right" in the same workbook, with 21 column per sheet for time and data:
xlswrite( 'CarData.xlsx', [CarData.Left.Time, CarData.Left.Data], 'Left' ) ;
xlswrite( 'CarData.xlsx', [CarData.Right.Time, CarData.Right.Data], 'Right' ) ;
  4 Comments
Ilaria Shireen Sestili
Ilaria Shireen Sestili on 29 Jul 2020
Hello,
I have tried as said but exporting them to excel I obtain many inconsistencies with the data, meaning that excel doesn't read the . separator and I get in some cells 1227 instead of 12.27 for example,but not in all of them.
does anyone now how to solve this problem?
thanks a lot!
Cedric
Cedric on 29 Jul 2020
There are new functions for exporting data to file, like writematrix, writecell, writetable, or writetimetable.
If these fail, could you attach a slice of your data to your question/comment?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!