怎么用服务器跑matlab程序,服务器上跑matlab程序

怎么在服务器上跑matlab程序呢?

一种新的方式 运用ssh命令

ssh -l usename  192.168.... 然后再输入password 就可以在terminal中直接打开远程服务器了。

另一种old方式如下:

1 windows界面下使用putty,输入服务器ip地址,然后用户名和密码

2 将自己的代码上传到服务器上

3 使用这个命令来使用 matlab -nodesktop

看这个网址http://www.sc.fsu.edu/computing/tech-docs/325-matlab

(

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 doe

你可能感兴趣的:(怎么用服务器跑matlab程序)