creating folder in matlab
6 ビュー (過去 30 日間)
古いコメントを表示
how can i create a folder in matlab which will store all my text files in it
0 件のコメント
回答 (2 件)
Chunru
2022 年 7 月 14 日
% create folder (in current folder)
folder = "mydir";
mkdir(folder);
% save data in a file in the folder
a = rand(3);
save(fullfile(folder, 'test.txt'), 'a', '-ascii');
% show the file
type mydir/test.txt
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!