Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是从终端运行具有多个实例的相同 matlab 脚本是否可以用 matlab 做到这一点?如果是我该怎么做?
在 Linux 中使用&不等待子进程结束。
&
n = 5; for i=1:n system('matlab -desktop -r ls &'); end
替换ls为您希望运行的函数的名称。
ls
system,unix和dos命令是可以互换的。
system
unix
dos