Saving struct to excel

146 visualizaciones (últimos 30 días)
Deepa Maheshvare
Deepa Maheshvare el 19 de Mayo de 2020
Comentada: Geoff Hayes el 20 de Mayo de 2020
I've a struct in the following form
Astruct =
struct with fields:
data1: [5001×16 double]
data2: [5001×16 double]
I'd like to save this to an excel with the data corresponding to each fieldname in separate sheets of the same excel file. The sheets names have to be slightly modified
i.e derived from fieldnames : data1_matlab, data2_matlab.
Any suggestions on how to do this will be really helpful

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 19 de Mayo de 2020
Deepa - you can use fieldnames to return a cell array of the field names for your structure. You can then iterate over each name in this array to extract the data and write it to an Excel worksheet. Perhaps something like the following will work
excelFilename = 'someFile.xlsx';
structFieldnames = fieldnames(myStruct); % <--- where myStruct is your struct of data
for k = 1:length(structFieldnames)
fieldname = structFieldnames{k};
writematrix(myStruct.(fieldname), excelFilename, 'Sheet', sprintf('%s_matlab', fieldname));
end
Please note that I haven't tested the above. See writematrix for more details.
  2 comentarios
Deepa Maheshvare
Deepa Maheshvare el 20 de Mayo de 2020
Editada: Deepa Maheshvare el 20 de Mayo de 2020
Is it possible to add column headers before writing to excel sheets?
For example ,
data1: [5001×16 double] % column header like this = ['col1', ..., 'col16']
I want to do this.
Thanks,
Deepa
Geoff Hayes
Geoff Hayes el 20 de Mayo de 2020
From writematrix name-value pair arguments, take a look at the Range property...you should be able to use that to write your header and then write your data.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by