From: Paul on 12 Jul 2010 08:20 "M Paheerathan" <mp.mscproject(a)yahoo.com> wrote in message <i1eusp$lga$1(a)fred.mathworks.com>... > How to display recent file list in MatLAB GUI File menu? Is there any easy ways? > > Thank you, > > Best Regards, > Paheerathan If you ask how to access it, I have a solution. It's not very elegant but it works. OldPath = cd; % save current path, in order to restore it at the end cd('C:\Documents and Settings\Paul\Recent'); % go to the Recent folder path myfile = uigetfile; % function for Open File Dialog cd(OldPath); % restore old path If you want to deploy on other PC you have to search for a solution how to get the Recent File folder path (here the path is fix). It shouldn't be very hard.
|
Pages: 1 Prev: Reading DICOM US clip (multiframe array) Next: fft amplitude in mV |