Running matlab in the background

后端 未结 6 663
北恋
北恋 2021-02-04 17:25

I am running matlab on 48 virtual machines and would like to automate it. I ssh into the machines then use matlab -r matlab_command > outfile.txt & to get t

6条回答
  •  南方客
    南方客 (楼主)
    2021-02-04 17:50

    If you are using file:

    nohup matlab -nodesktop -nodisplay < file.m > result.txt &

    You might need to press enter after you execute this.

提交回复
热议问题