Write text to excel file including variable
古いコメントを表示
I want to write "dp= 30'pitch diameter" in the A1 cell of the excel file named peq.xls, where 30 is the variable.
回答 (1 件)
madhan ravi
2018 年 11 月 3 日
編集済み: madhan ravi
2018 年 11 月 3 日
TRY:
dp = 30
t=table(dp,'RowNames',{'pitch diameter'})
writetable(t,'peq.xls')
カテゴリ
ヘルプ センター および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!