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 CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by