Run multiple exe at same time
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dear all,
I would like to know if MATLAB is able to run the multiple exe simultaneously. If yes, how to run it?
0 Commenti
Risposta accettata
Voss
il 21 Feb 2022
Yes, you can use "&" to return control to MATLAB immediately after the exe starts. Then you can immediately run an exe again. For instance:
!excel.exe &
!excel.exe &
That would start two instances of Excel.
5 Commenti
Più risposte (1)
Walter Roberson
il 21 Feb 2022
As .exe are specific to Windows, you could consider using .NET System.Diagonstics.Process to create the processes and control them.
Vedere anche
Categorie
Scopri di più su MATLAB Functions in Microsoft Excel in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!