kill a processb from matlab

12 visualizzazioni (ultimi 30 giorni)
Sajid Afaque
Sajid Afaque il 14 Gen 2020
Commentato: Walter Roberson il 27 Apr 2022
hello all
i have got the process id [pid] of an external process.
what is the syntax to kill that process using the pid.
i want to kill using pid not by process name from matlab

Risposte (2)

Selva Karna
Selva Karna il 14 Gen 2020
from command window enter key word : cntorl +C
  1 Commento
Walter Roberson
Walter Roberson il 14 Gen 2020
That cannot be used to kill a particular process using its PID.

Accedi per commentare.


Walter Roberson
Walter Roberson il 14 Gen 2020
pid = whatever number
if ispc
cmd = sprintf('taskkill /PID %d', pid);
else
cmd = sprintf('kill %d', pid);
end
system(cmd)
  4 Commenti
Juan Troya
Juan Troya il 27 Apr 2022
I get this error
Using Matlab R2018B
Error using TaskKill
Too many input arguments.
MATLAB:TooManyInputs
Error: Too many input arguments.
Walter Roberson
Walter Roberson il 27 Apr 2022
What code are you using? The code I posted does not use any MATLAB function named TaskKill

Accedi per commentare.

Categorie

Scopri di più su MATLAB 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