Export variable Cell data to excel
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Muthukumar Gopalsamy
el 13 de Dic. de 2020
Comentada: Muthukumar Gopalsamy
el 14 de Dic. de 2020
Hi
My script was like this
export_overlap(k,:) = {'Freq X',i,'Freq Y',ii,'Overlapping',intersect(a, b)}
xlswrite(filename,export_overlap,2,'A1');
i,k,ii are loop indices.
a and b are array of integers of variable length from which common elements has to exported to excel sheet.
since matrix or array has to be of same dimension i have tried cell array method to store in matlab but struct while exporting to excel
when i export the particular cell in excel sheet is empty whenver there is more than one common elements between 'a' and 'b' array
Kindly suggest me how to overcome this
Regards
Muthukumar V G
2 comentarios
Matt Gaidica
el 13 de Dic. de 2020
Muthukumar, I'm not sure if it will help in the end, but are you aware of the newer functions to generate an XLS in MATLAB 2020? https://www.mathworks.com/help/matlab/ref/xlswrite.html
My guess is your data is formatted in an unpleasant way, can you post the entire function?
Respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!