piconewton 发表于 2010-12-17 03:55

求助:uigetfile 打开文件时初始路径设置问题

当用uigetfile函数来打开文件时,谈出对话框的初始路径是matlab的文件夹,然后我的数据在别的地方,切过去很麻烦,如何改变这个初始路径使它更靠近我的目标位置呢?求教。

先多谢了!!

ChaChing 发表于 2010-12-17 08:08

考量先使用cd函数

tenglang 发表于 2010-12-17 09:06

本帖最后由 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

本帖最后由 zhouyang664 于 2010-12-17 09:20 编辑

MATLAB自己的help这些事情就讲的挺清楚的,楼主不要忘记help啊!

piconewton 发表于 2010-12-24 07:11

多谢各位了!!
页: [1]
查看完整版本: 求助:uigetfile 打开文件时初始路径设置问题