Run multiple exe at same time
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear all,
I would like to know if MATLAB is able to run the multiple exe simultaneously. If yes, how to run it?
0 commentaires
Réponse acceptée
Voss
le 21 Fév 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 commentaires
Plus de réponses (1)
Walter Roberson
le 21 Fév 2022
As .exe are specific to Windows, you could consider using .NET System.Diagonstics.Process to create the processes and control them.
Voir également
Catégories
En savoir plus sur MATLAB Functions in Microsoft Excel dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!