Export cell array into Excel, with each column in a separate Excel Sheet
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a 87x46 cell array called "ExpSimple". Within this cell array, the size of each cell is: 1 row by k columns, where k changes (as you can see in the attached screenshot).
I would like to export this cell array in Excel in the following manner:
Each Excel sheet must have one column of the array "ExpSimple". Hence, the Excel file must have 46 sheets. Then, within each Excel sheet, the rows must have the content of each cell. At the end, each of the 46 Excel sheets will have 87 rows. How can I do this? Note that some columns are empty (for example, row 8 column 10). Also, the cell data is text or strings, not numerical values. I'm using Matlab version R2017b
Thanks,
JJ
0 commentaires
Réponses (1)
Raghava S N
le 20 Nov 2024 à 4:11
As each column of the cell array should be written into a different sheet of the same Excel file, the “xlswrite” function can employed to achieve this export. I have detailed a workflow below, which can be followed to execute this task.
First, iterate through each column of the “ExpSimple” cell array, treating each column as a separate sheet in the Excel file. Then, extract the data from each column. Loop through the extracted data and if an empty cell is found, over-write it with an empty string. This ensures that the Excel file accurately reflects the content of the “ExpSimple” cell array.
Create a new sheet and write the extracted data into the corresponding rows of that sheet. This can be done by passing a string as the name of the sheet for the “sheet” parameter in the “xlswrite” function, along with the extracted data for the “Input matrix” parameter and the name of the Excel file for the “filename” parameter. Repeat this process for each column in the “ExpSimple” cell array.
The “xlswrite” function is particularly useful because it can handle both numerical and textual data, and it allows for writing data into specified sheets within an Excel file. For more information about the “xlswrite” function, execute this command in the MATLAB command window-
web(fullfile(docroot, 'matlab/ref/xlswrite.html'))
Hope this helps!
0 commentaires
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!