running Matlab script through unix bash script

210 次查看(过去 30 天)
Hello,
I am trying to set up a crontab in Unix to run a Matlab script once a day. When I test my shell script on the Unix command line it runs fine and I get my output from the Matlab script. However, when I try setting up my crontab, nothing seems to happen. My crontab looks like this:
30 12 * * * /Datadisk/mcevoyd/spi_spei_auto/runmatlab.sh
And runmatlab.sh looks like this:
#!/bin/bash
matlab -nodisplay -nodesktop -r "run /Datadisk/mcevoyd/spi_spei_auto/get_HCN_data.m"
Again, runmatlab.sh works fine when run from the Unix command line. Does anyone know how I can get my crontab to run this matlab script?
Thanks, Dan
  3 个评论
Walter Roberson
Walter Roberson 2018-5-7
You would need a MATLAB license to run it in the above form.
If you had a MATLAB Compiler license, then you could compile it on a Linux system, after which you would be able to install it on other Linux systems and run it without a license (after installing MCR).
Note, though, that not everything can be compiled, and that there can be some code changes needed to get it to refer to files properly (see matlabroot())

请先登录,再进行评论。

回答(2 个)

Walter Roberson
Walter Roberson 2012-2-20
Are you certain that matlab is on the path that cron uses?
Where are you expecting the output files to go? Which directory is cron starting your task from? Is it possible a directory there is no write access to?
I would also suggest a modification for greater certainty of execution:
( cd /Datadisk/mcevoyd/spi_spei_auto; matlab -nodisplay -nodesktop -r "try; get_HCN_data; catch; end; quit" ) > YourOutputLogFile 2> YourErrorLogFile
  3 个评论
Walter Roberson
Walter Roberson 2012-2-20
Yep, those kinds of things can be important.
I still advise the try/catch on execution: when MATLAB is being executed with stdin redirected (e.g. cron uses </dev/null ) and MATLAB does not see a quit in the command stream perhaps because a problem crashed the program, then MATLAB has a tendency to try to read command from stdin indefinitely :( :(
Jason Ross
Jason Ross 2012-4-9
It's also likely that rather than trying to set a few environment variables, you could just call whatever script initializes your environment -- most likely a .cshrc somewhere. This would ensure that you have the same environment both when you run via cron and interactive from the terminal, eliminating a source of potential confusion.
NOTE: I'm assuming that you are running this cron job as the user "mcevoyd", and not as "root".

请先登录,再进行评论。


Milenko
Milenko 2012-4-9
I have similiar problem but it does not work:
#!/bin/bash
setenv USER milenko
setenv LOGNAME milenko
setenv HOME /home/milenko
setenv PATH /home/milenko/fg77/fuzzycluster/np1ep1
setenv LANG en_US.UTF-8
matlab -nodisplay -nodesktop -r "scale1.m"
matlab -nodisplay -nodesktop -r "scale2.m"
But:
./proba: line 3: setenv: command not found
./proba: line 4: setenv: command not found
./proba: line 5: setenv: command not found
./proba: line 6: setenv: command not found
./proba: line 7: setenv: command not found
./proba: line 9: matlab: command not found
./proba: line 10: matlab: command not found
  2 个评论
Jason Ross
Jason Ross 2012-4-9
When you add /home/milenko/fg77/fuzzycluster/np1ep1 to the PATH, you need to include the previous PATH in there. Right now the PATH goes from (for example) /bin:/usr/bin:/sbin to /home/milenko/fg77/fuzzycluster/np1ep1. You want it to be /bin:/usr/bin:/sbin:/home/milenko/fg77/fuzzycluster/np1ep1
The syntax will be something like:
PATH=${PATH}:/home/milenko/fg77/fuzzycluster/np1ep1
Daniel Shub
Daniel Shub 2012-4-9
This is really a new question and should be asked as such. I am pretty sure bash does not have a setenv command. Either switch you shell or set the environment variables in a way that bash likes.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by