exporting Matlab array to excel file ?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi every one #
I'm trying to export an array which been saved to Matlab work-space with the name of IAE_V using the following code. Only the title been saved but not the values of IAE_V array
filename = 'testdata.xlsx';
c=vertcat(IAE_V);
A = {'IAE'; c};
sheet = 1;
xlRange = 'E1';
xlswrite(filename,A,sheet,xlRange)
thanks in advance for you
1 Kommentar
Image Analyst
am 13 Jan. 2016
vertcat() takes two arguments. What two arrays do you want to concatenate?
Antworten (1)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!