How to write strings and numbers in excel file?

8 ビュー (過去 30 日間)
vaggelis papasot
vaggelis papasot 2017 年 12 月 22 日
回答済み: Walter Roberson 2017 年 12 月 22 日
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

採用された回答

Walter Roberson
Walter Roberson 2017 年 12 月 22 日
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 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by