Hi everyone,
I'm trying to export my data which is saved in a structure to a csv file. The structure is two dimensional but contains vectors in some cells. So far I tried to convert it in a table and save it using writetable, but the vectors were not recorded correctly.
Thanks for any advice,
Kathrin

2 Kommentare

Turlough Hughes
Turlough Hughes am 29 Sep. 2020
Can you attach the structure to the question?
Kathrin Sadus
Kathrin Sadus am 29 Sep. 2020
Sure! It looks like this one here.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 30 Sep. 2020

1 Stimme

MATLAB just introduced writestruct(): https://www.mathworks.com/help/matlab/ref/writestruct.html in R2020b. If you have R2020b, you can directly write the struct in a text file.

Weitere Antworten (2)

Sudhakar Shinde
Sudhakar Shinde am 29 Sep. 2020

1 Stimme

You can try this:
load Structure_Example.mat
writetable(struct2table(PracTrials), 'Structure_Example.csv')
The output csv file snal looks as below:

5 Kommentare

Kathrin Sadus
Kathrin Sadus am 29 Sep. 2020
Thanks, that was exactly what I was trying, but as soon as I'm using a different structure it seems to fail to convert the table into a csv file. I attached the strcuture and the resulting file.
Again, thanks for helping!
Hellon Kathrin,
The multidimentional data available in structure as highlighted.
Creating a table from struct is working perfectly. This multidimentional data is now available in cell array in table.
struct2table(PracTrials)
And reaon of improper data in csv file is:
For more info:
Sudhakar Shinde
Sudhakar Shinde am 29 Sep. 2020
Bearbeitet: Sudhakar Shinde am 29 Sep. 2020
You could convert structure into cell array and then write cell into csv. It writes cell data perfectly in csv file.
Converting into cell array, will miss the headers. so you need to work on headers to get perfectly in csv file.
table1=struct2cell(PracTrials);
writecell( table1, 'PracTrials3.csv')
%%Alternatively try for
S=struct2table(PracTrials);
table=table2cell(S);
writecell( table, 'PracTrials2.csv')
Kathrin Sadus
Kathrin Sadus am 21 Okt. 2020
Thank you very much for your help!
Aneesha
Aneesha am 3 Dez. 2021
can you show the format of PracTrails

Melden Sie sich an, um zu kommentieren.

Mohammad
Mohammad am 2 Mär. 2022

0 Stimmen

Hi,
I tried to used the same method to convert my struct mat file (attached) but failed. Any help is appreciated.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by