求助:uigetfile 打开文件时初始路径设置问题
当用uigetfile函数来打开文件时,谈出对话框的初始路径是matlab的文件夹,然后我的数据在别的地方,切过去很麻烦,如何改变这个初始路径使它更靠近我的目标位置呢?求教。先多谢了!!
考量先使用cd函数 本帖最后由 tenglang 于 2010-12-17 09:09 编辑
helpuigetfile, you will find:
uigetfile(FilterSpec,DialogTitle,DefaultName)displays a dialog box in which the filename specified by DefaultName appears in the File name field. DefaultName can also be a path or a path/filename. In this case, uigetfile opens the dialog box in the directory specified by the path. See Example 6 . Note that you can use '.','..', or '/' in the DefaultName argument.
Example 6This example uses the DefaultName argument to specify a start path and a default filename for the dialog box.
uigetfile({'*.jpg;*.tif;*.png;*.gif','All Image Files';...
'*.*','All Files' },'mytitle',...
'C:\Work\myfile.jpg'
本帖最后由 zhouyang664 于 2010-12-17 09:20 编辑
MATLAB自己的help这些事情就讲的挺清楚的,楼主不要忘记help啊! 多谢各位了!!
页:
[1]