怎么在服务器上跑matlab程序呢?
一种新的方式 运用ssh命令
ssh -l usename 192.168.... 然后再输入password 就可以在terminal中直接打开远程服务器了。
另一种old方式如下:
1 windows界面下使用putty,输入服务器ip地址,然后用户名和密码
2 将自己的代码上传到服务器上
3 使用这个命令来使用 matlab -nodesktop
(
With the exception of the classroom and hallway computers, MATLAB access is available only on theGeneral Purpose (GP) Cluster through SGE. Unless initiated through an X11-capable terminal (i.e. Gnome Terminal, xterm, rxvt, etc.), MATLAB will start in a text-only command-line mode.
NOTE:To force MATLAB to run in command-line mode use the following flags:
matlab -nodesktop -nojvm -nosplash
-nodesktop
Start MATLAB without its desktop.
-nojvm
Start MATLAB without the Java virtual machine (JVM).
-nosplash
Start MATLAB but does not display the splash screen.
)
今天下午搞了1个小时的mat