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 CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by