How can I optimize my writetable function to run faster
Afficher commentaires plus anciens
I have a program that uses the import tool
It writes information from the import tool to a struct named myData
myData is then used to write the information from each cell into a spreadsheet with the information stored in a separate sheet in the excel file.
It takes a long time to run the program and was wondering if there is a faster way to call and write this information to excel.

for jj = 1:list
store = myData{1,jj}
un_in = unique(store)
writetable(un_in,filename,'Sheet',jj,'Range','A1');
end
Réponses (0)
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!