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

1 vue (au cours des 30 derniers jours)
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)

Réponse acceptée

Jan
Jan le 27 Juil 2013
Modifié(e) : Jan le 27 Juil 2013
[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.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by