how to export multiple matlab variable outputs to excel sheet?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have number of data sets and each data set gives 5 output values(NDVImean,NDVImin,dNDVI,t,sen) I attached a excel sheet for one data set output.The multiple data sets are read by program via loop.I want get every data sets output in a one excel sheet.(row to next row in excel sheet).How to do it ?please help me.thanks!
0 Commenti
Risposte (1)
Roberto
il 7 Mag 2014
varCell{1} = var1 ;
varCell{2} = var2 ;
xlswrite('myfile.xlsx',vaCell);
or something like it!.
0 Commenti
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!