Write text to excel file including variable
Afficher commentaires plus anciens
I want to write "dp= 30'pitch diameter" in the A1 cell of the excel file named peq.xls, where 30 is the variable.
Réponses (1)
madhan ravi
le 3 Nov 2018
Modifié(e) : madhan ravi
le 3 Nov 2018
TRY:
dp = 30
t=table(dp,'RowNames',{'pitch diameter'})
writetable(t,'peq.xls')
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!