我从下面的链接中找到了我的某些问题的答案。 如何告诉 MATLAB 在同一目录中打开和保存特定文件
但现在我想知道,在处理完图像后,我希望将这些图像保存到一个新文件夹中。所以你能帮我找到它的编码吗?
急切地等待答案。
我从下面的链接中找到了我的某些问题的答案。 如何告诉 MATLAB 在同一目录中打开和保存特定文件
但现在我想知道,在处理完图像后,我希望将这些图像保存到一个新文件夹中。所以你能帮我找到它的编码吗?
急切地等待答案。
Before using MKDIR to create a new directory check if it already exists or not with EXIST function. Remember that it will search the whole matlab path, so it's better to append './' to the directory name. FULLFILE will take care of path separator.
dirname = 'test';
if exist(fullfile('.',dirname),'dir')
mkdir(dirname)
end
cd(dirname)
使用cd命令更改目录。
请记住,您可以访问内置的 Matlab 函数参考,键入“doc”,后跟函数名称。
例如,如果您键入“doc mkdir”,您将获得该mkdir
命令的描述,并且在描述的底部有一个相关函数列表 - 包括cd
.