Use drop down menu to select file to plot

15 views (last 30 days)
Konvictus177
Konvictus177 on 17 Oct 2021
Commented: Konvictus177 on 18 Oct 2021
Hi,
I have multiple .mat files in my folder that I load into matlab using dirfiles. How can I have a drop down menu or list that lets me select which file I want to plot and switch from one file to the other one?
for k = 1:numfiles
myfilename = dirfiles(k).name;
fullFileName = fullfile(PathName, myfilename);
mydata{k} = load(fullFileName);
end
  5 Comments
Walter Roberson
Walter Roberson on 17 Oct 2021
filenames = {dirfiles.name};
[indx, tf] = listdlg('ListString', filenames, 'PromptString', 'Select a file');
if ~tf; return; end %user cancel
fullFileName = fullfile(PathName, filenames{indx});
mydata = load(fullFileName);
Konvictus177
Konvictus177 on 18 Oct 2021
Thanks for the help.
I was able to use listdlg box and bring the listdlg box up again when a certain condition was met.

Sign in to comment.

Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!