How to store 5 or 6 files output into same excel file
Ältere Kommentare anzeigen
Hi all, I got an output for one input file and I am able to store it in an Excel file but I m unable to store the outputs of 5 or 6 different data files into the same sheet at different locations.
I m using the following lines to store the output of one specific file into an Excel sheet.
xlswrite('C:\Documents and Settings\ototemp-u\My Documents\MATLAB\filenamenew1.xlsx', t(record2),'Sheet1','A2');
xlswrite('C:\Documents and Settings\ototemp-u\My Documents\MATLAB\filenamenew1.xlsx', Z2(record2),'Sheet1','B2');
xlswrite('C:\Documents and Settings\ototemp-u\My Documents\MATLAB\filenamenew1.xlsx', surfacearea1,'Sheet1','C2');
xlswrite('C:\Documents and Settings\ototemp-u\My Documents\MATLAB\filenamenew1.xlsx', surfacearea2,'Sheet1','D2');
Can anyone help me in storing outputs for 5 or 6 different files into same excel sheet at different locations. So that when the file opens i can see all the ouputs displayed in one sheet.
3 Kommentare
the cyclist
am 23 Mär. 2011
Can you be more specific about what happens when you do the commands listed there? (I can't do it myself, because xlswrite does not work on a Mac.)
Are you getting anything at all written to the Excel file?
santosh
am 23 Mär. 2011
the cyclist
am 23 Mär. 2011
What are the sizes of the arrays you are writing? Maybe they are not the sizes you expect? Maybe surfacearea1 and surfacearea2 are accidentally scalar instead of vector?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Spreadsheets finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!