How to insert index table on XLS
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
How can I insert a Index table on XLS file?
On matlab I have a matrix with 8colums and 200rows.
I need to insert on the first row of each column the title.
I'm using xlswrite('CO2.xls',A) for exporting the matrix.
Can anybody help me please?
Réponses (1)
Fangjun Jiang
le 28 Oct 2011
I can think of two ways. First one is to write twice. The second one is to combine the Header and Data and then write once. See if the first one solves your problem.
Header={'colA','colB','colC'};
Data=rand(20,3);
xlswrite('CO2.xls',Header,1,'A1');
xlswrite('CO2.xls',Data,1,'A2');
2 commentaires
Maurizio
le 28 Oct 2011
Fangjun Jiang
le 28 Oct 2011
Run the code in my answer and you'll see. 'A1','A2' is the starting cell position in the spreadsheet that you want to write the data to. Check the help of xlsread().
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!