How to turn existing code into app and which components to use?

12 views (last 30 days)
Hello! I would like to create an app that would promt a user to select a file from thier computer and then run code that I have already created. I know I need to use app designer but I do not understand which component to select to prompt the user to select and file and then on the back end how to apply my function. Any help is appreciated!

Accepted Answer

Bhaskar R
Bhaskar R on 3 Dec 2019
You can use any action UI control button in app designer, suppose mostly used one is push button. In the respective UI control call back write your code as
[flname, pt] = uigetfile('*.m', 'Select the m file');
run([pt, flname])
For more info/ help on MATLAB app designer read
  2 Comments
Walter Roberson
Walter Roberson on 4 Dec 2019
Note: it would be better to use
run(fullfile(pt, flname))
uigetfile does not promise that the path will end in a directory separator.

Sign in to comment.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!