How to use MATLAB to determine if an exe process exist?

29 visualizzazioni (ultimi 30 giorni)
i want to use MATLAB to determine if 'mspaint.exe' is running on the system and return the status.
How could i complish this with MATLAB?

Risposta accettata

Jakob
Jakob il 18 Nov 2020
Modificato: Jakob il 18 Nov 2020
[~,b] = system('tasklist');
IsRunning = contains(b, 'mspaint.exe'); %1, if is running / 0, if not

Più risposte (0)

Categorie

Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by