signature of values ​​when exporting to excel?

1 回表示 (過去 30 日間)
Lev Mihailov
Lev Mihailov 2019 年 11 月 25 日
回答済み: Andrei Bobrov 2019 年 11 月 25 日
I export a 2x3 matrix to Excel, but I need to sign the values
filename = 'L:\DataABC\ABS.xlsx';
A=[2 3]
ABC(:,1) = A';
B=[4 5]
ABC(:,2) = B';
C=[6 7]
ABC(:,3) = C';
xlswrite(filename,ABS)
How to sign values?

採用された回答

Andrei Bobrov
Andrei Bobrov 2019 年 11 月 25 日
A = A'; B = B'; C = C';
writetable(filename,table(A,B,C))

その他の回答 (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