how do i open a browser in matlab ?
2 次查看(过去 30 天)
显示 更早的评论
how to a open browser to select image files in folder or browse to diferent folder in computer and load the file ?
0 个评论
回答(2 个)
Sky Sartorius
2020-2-19
Use uigetfile: https://www.mathworks.com/help/matlab/ref/uigetfile.html
Or if you have the toolbox,
help uigetimagefile
0 个评论
Image Analyst
2020-2-22
Try this:
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~exist(startingFolder, 'dir')
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.*');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!