Matlab uigetfile opens the current directory as the starting point.
How can we let it 'remember' the last place user has been?
'UIGETDIR' function has a starting path as an input parameter, but
uigetfile doesn’t seem to have one. Thanks.
Titus
"Pinpress" <sb...@yahoo.com> schrieb im Newsbeitrag
news:ef46e...@webcrossing.raydaftYaTP...
[filename, pathname] = uigetfile( ...
{'*.mat','Converted MAT Image pair (*.mat)'; ...
'*.img', 'Raw image file (*.img)'; ...
'*.bmp', 'Converted BMP image file (*.bmp)'}, ...
'Pick a snap image file (cam?_s*.img; cam?_s*.mat;
im_pair_*.mat');
If I change '*.mat' to: 'c:\tmp\*.mat', it does not work the way I
expect, instead, it still uses current path. any ideas?
[filename, pathname] = uigetfile( ...
{'*.mat','Converted MAT Image pair (*.mat)'; ...
'*.img', 'Raw image file (*.img)'; ...
'*.bmp', 'Converted BMP image file (*.bmp)'}, ...
'Pick a snap image file (cam?_s*.img; cam?_s*.mat; im_pair_*.mat',
'c:\temp\');
Titus
"Pinpress" <sb...@yahoo.com> schrieb im Newsbeitrag
news:ef46...@webcrossing.raydaftYaTP...