How can I write excel file in MatLab
3 ビュー (過去 30 日間)
古いコメントを表示
I have huge number of excel files. I have to collect certain data from each of the files and write all of them in a single excel file. How can I do it?
0 件のコメント
回答 (1 件)
Durgesh Naik
2015 年 7 月 15 日
filename = 'Book1_Test.xlsx'; A = {1 2 3 5 6 6 2 0.222 0.122 0.444}; B = {1 12 13 15 1 61 21}; sheet = 1; n = xlsread('Book1_Test.xlsx'); e = length(n); e = mat2str(e) xlRange = (['A' e+1])
xlswrite(filename,A',sheet,xlRange)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!