save output for specific folder
50 ビュー (過去 30 日間)
古いコメントを表示
i have to save file
i use
save (uigetdir ("F: \"), "d")
but file is not saving
what can i do
0 件のコメント
採用された回答
Geoff Hayes
2019 年 2 月 14 日
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");
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Filename Construction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!