More efficient way to export output to Excel
古いコメントを表示
Hello,
I am currently following this method to export the results to one Excel file:
xlswrite('C:\Users\...\Graph.xlsx',{'A' 'B' 'C' 'D'},'Sheet1','A1');
xlswrite('C:\Users\...\Graph.xlsx',PriceA','Sheet1','A2');
xlswrite('C:\Users\...\Graph.xlsx',PriceB','Sheet1','A2');
.
.
etc
There must be a more efficient way that opens the excel file only once, but I am not able to locate it. It is not really logical to write every time separately to the same file.
Any assistance is appreciated.
Thanks
採用された回答
その他の回答 (1 件)
Shashank Prasanna
2013 年 8 月 30 日
編集済み: Shashank Prasanna
2013 年 8 月 30 日
1 投票
You can use the com interface directly. XLSWRITE does this each time when you call it.
Here is an example:
More about COM Interface:
2 件のコメント
AND
2013 年 8 月 30 日
Shashank Prasanna
2013 年 8 月 30 日
You said your issue is the following. Quote:
There must be a more efficient way that opens the excel file only once, but I am not able to locate it. It is not really logical to write every time separately to the same file.
What I gave you does exactly that.
Regards,
カテゴリ
ヘルプ センター および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!