How do I keep a deployed matlab executable from launching a new instance of the application each time I double click on it?
2 views (last 30 days)
Show older comments
using Matlab, I created a deployable executable (let's call it ERNIE) that launches and works just fine. The only problem is, it launches a new instance of ERNIE every time I double click on the executable. I've written applications in C, C++, C# and VB and know how to code them so they do not launch a second instance. Can the same thing be done with my deployed Matlab application?
0 Comments
Answers (1)
Nagarjuna Manchineni
on 15 May 2017
There is no inbuilt solution/flag to achieve the behavior. However, you can use the operating system specific ways to check whether the process is running or not before launching the application. For example, in windows, you can use the below code and create a .bat file that checks whether ERNIE is running or not and if it is not running then it launches the ERNIE application.
@ECHO OFF
SETLOCAL EnableExtensions
set EXE=ERNIE.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto FOUND
REM echo Not running
start ERNIE.exe
goto FIN
:FOUND
echo Running
:FIN
0 Comments
See Also
Categories
Find more on MATLAB Compiler 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!