How to write strings and numbers in excel file?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
vaggelis papasot
am 22 Dez. 2017
Beantwortet: Walter Roberson
am 22 Dez. 2017
I want to write data in an excel file. I need the first row to strings/labels of the data e.g f_min, f_max_, loss_1, loss_2. Then the next rows will have the data under the above labels. I use xlswrite but can't find how to append the data to the next rows
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Dez. 2017
headers = {'f_min', 'f_max', 'loss_1', ...};
data_as_cell = num2cell(YourNumericDataArray);
info_to_write = [headers; data_as_cell];
xlswrite(AppropriateFilename, info_to_write);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!