Running matlab in the background

后端 未结 6 674
北恋
北恋 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:56

    I found some useful link Tips for Running Large Computations and nohup

    nohup nice matlab -nodisplay -nosplash  outfile.txt > 2>dev/null &
    

    maybe this can fix your problem.

提交回复
热议问题