How can I allow a user to define the file name and directory when saving a Microsoft Word file?

1 回表示 (過去 30 日間)
I wrote some code to create a Microsoft Word document and write some data inside it. The code below doesn't allow users to choose the directory and filename. In the GUI I have a pushbutton, I would like the allow the user to define the directory and file name. How I can change this GUI code to allow this?
parameters = 0:.1:1
A = [ parameters ; exp( parameters )]
fileID = fopen('results.doc','w')
fprintf(fileID,'%6s %12s\n','parameters ','rms')
fprintf(fileID,'%6.2f %30.8f\n',A)
fclose(fileID)

採用された回答

Jan
Jan 2013 年 7 月 27 日
編集済み: Jan 2013 年 7 月 27 日
[fileName, filePath] = uiputfile('*.doc', 'Create a file:')
if ~ischar(fileName)
return;
end
fileID = fopen(fullfile(filePath, fileName), 'w');
Note, that the shown method does not create a MS-Word file, but a standard text file. But MS-Word can open such files also.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by