xlsread1 suggested by Antonio will take much time
古いコメントを表示
I used the xlswrite1 code (proposed by Matt, http://www.mathworks.com/matlabcentral/fileexchange/10465-xlswrite1) to write many similar matrix into one excel file with various Sheets. It worked well, so fast. However, reading this excel file using the xlsread1 code will take much time. For example, 600 Sheets will take 5 mins. Is it normal?
1 件のコメント
Chandrasekhar
2014 年 3 月 19 日
try to use activex server commands
回答 (1 件)
Chandrasekhar
2014 年 3 月 19 日
Excel = actxserver('Excel.Application');
workBook = Excel.Workbooks.Open('filename.xls');
workSheets = Excel.Sheets;
for i = 1:workSheets.Count
sheet = get(workSheets,'item',i);
sheetName{i} = sheet.Name;
end
2 件のコメント
Haibo
2014 年 3 月 19 日
Chandrasekhar
2014 年 3 月 19 日
I think there is no other method which executes faster than activex.
カテゴリ
ヘルプ センター および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!