Run multiple exe at same time
조회 수: 9 (최근 30일)
이전 댓글 표시
채택된 답변
Voss
2022년 2월 21일
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
추가 답변 (1개)
Walter Roberson
2022년 2월 21일
As .exe are specific to Windows, you could consider using .NET System.Diagonstics.Process to create the processes and control them.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!