How can I open an external application from Matlab app designer

5 views (last 30 days)
I am Working on an app that creates a data file to be used VMD ( visual molecular dynamics). The app creates the data file which I then want to be opened in VMD. I have included input for the users path to VMD but I am unsure of the syntax to directly open the file in vmd. I've been using something like:
system(strcat(char(VMD_path),char(strcat({' '},'TEST.xyz'))));
which only opened vmd and gave an error for the file. I changed some things around and now none of it works. For reference, my path was input exactly as "C:\Users\Jonathan\Desktop\VMD 1.9.3.lnk" when it did work. I am a newbie when it comes to matlab so any help is very much appreciated! lastly does location of the file in matlab matter? the file seems to be created in whatever directory that is open in matlab. thank you!

Accepted Answer

Chris Portal
Chris Portal on 14 Apr 2018
Your system is not going to know where your test data file lives, so you need to provide it more than just the name and extension to it. If it’s being created in the current MATLAB directory, then you can try something like this:
fTest = fullfile(pwd, TEST.xyz);
cmd = [VMD_path ‘ ‘ fTest];
system(cmd)
Note, your VMD path is to the lnk file, which is an OS shortcut to the actual executable. You may need to use the actual location of the executable file rather than its shortcut.
  1 Comment
Jonathan Salazar
Jonathan Salazar on 14 Apr 2018
Thank you for your response! This works perfectly to open VMD but still does not open the file in the app. I think i gave you the wrong location of the output file. It is created in the current matlab folder that the user is working in.

Sign in to comment.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer 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!