First page Back Continue Last page Overview Graphics
Example 2-5
continued nohup and matlab
These days many geophysicists do their computational task using MatLab. If your matlab program is a very time consuming program and you need to run it as background job, you should do as follow,
nohup matlab -nodisplay < YOUR_MATLAB_FILE.m > output.dat &
With above command matlab will run without opening a graphical console. Screen output of your matlab program will be directed to file output.dat.