Writing multiples values of different data types in excel
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shivam Pande
am 25 Mär. 2018
Bearbeitet: Shivam Pande
am 26 Mär. 2018
Hello.
I wish to create a table shown below using xlswrite command. Is there any way to achieve this using xlswrite only once (or minimum number of times) since it takes a lot of time?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 25 Mär. 2018
Yes. You'd have to make up a cell array with all those things in the proper row,column location of the cell array, and then write it once. For example:
ca{1, 3} = 'Classes';
ca{1, 4} = 'W';
% etc.
xlswrite(excelfileName, ca, 'Results', 'A1');
0 Kommentare
Weitere Antworten (0)
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!