How to export the output of a program into a new, specifically-located Excel file?

I would like to export the output of a program into an Excel file that is created, located, and filled all within the program. Is this possible?
Right now, I can only fill a pre-existing excel file using the following commands, but I get an error message (pasted below)
xlswrite(filename,variable);
winopen(filepath)
Warning: Could not start Excel server for export.
Thank you!

回答 (1 件)

David Sanchez
David Sanchez 2014 年 1 月 30 日
Write mixed text and numeric data to test.xls, starting at cell E1 of Sheet1:
my_file = "C:\my_docs\any_folder\test.xls"; % place where you want to save the *.xls
d = {'Time','Temperature'; 12,98; 13,99; 14,97}; % your data
xlswrite(my_file, d, 1, 'E1')
This should work no Windows Systems.

タグ

質問済み:

2014 年 1 月 30 日

回答済み:

2014 年 1 月 30 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by