save output for specific folder

i have to save file
i use
save (uigetdir ("F: \"), "d")
but file is not saving
what can i do

 Respuesta aceptada

Geoff Hayes
Geoff Hayes el 14 de Feb. de 2019
Suhas - uigetdir returns a directory only so you need to specify a file name too. Perhaps something like
folderToSaveFileTo = uigetdir ("F: \");
filename = "someName.mat";
save (fullfile(folderToSaveFileTo, filename), "d");

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Centro de ayuda y File Exchange.

Preguntada:

el 14 de Feb. de 2019

Comentada:

el 14 de Feb. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by