How can I open an external application from Matlab app designer

조회 수: 8 (최근 30일)
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!

채택된 답변

Chris Portal
Chris Portal 2018년 4월 14일
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
Jonathan Salazar
Jonathan Salazar 2018년 4월 14일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by