Process manager

Versión 1.1.0.0 (9,85 KB) por Brian Lau
Matlab class for launching and managing asynchronous processes
321 descargas
Actualizado 6 dic 2022

Nota del editor: This file was selected as MATLAB Central Pick of the Week

A Matlab class for launching and managing processes that run asynchronously from the main Matlab process. This can already be done with something like system('dir &'); but processManager makes it easy to:
> launch and manage multiple processes
> peek to check on the progress of running processes
> capture & display stdout and stderr streams of each process
> issue event notifications when processes finish

while allowing you to continue working in the main Matlab process.

Installing Steve Eddins's linewrap function is useful for dealing with unwrapped messages. His xUnit test framework is required if you want to run the unit tests.

Example:
p = processManager('command','ping www.google.com');
p.printStdout = false; % To keep the process running silently,
p.check(); % ... Check process status
p.printStdout = true; % When you want to see the io stream again
p.stop(); % Terminate

Go to https://github.com/brian-lau/MatlabProcessManager more info.

Citar como

Brian Lau (2024). Process manager (https://github.com/brian-lau/MatlabProcessManager), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2008a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Get Started with MATLAB en Help Center y MATLAB Answers.
Agradecimientos

Inspiración para: EnergyPlus Co-simulation Toolbox

Community Treasure Hunt

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

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
1.1.0.0

Update description.

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.