Difference between revisions of "MATLAB/Interactive"
From ScientificComputing
(Created page with "You can run an interactive MATLAB session on the login node, to do some quick tests, but larger calculations must be submitted through the batch system. In order to start an i...") |
|||
Line 1: | Line 1: | ||
You can run an interactive MATLAB session on the login node, to do some quick tests, but larger calculations must be submitted through the batch system. In order to start an interactive MATLAB session, load the matlab module and type the command <tt>matlab</tt>. | You can run an interactive MATLAB session on the login node, to do some quick tests, but larger calculations must be submitted through the batch system. In order to start an interactive MATLAB session, load the matlab module and type the command <tt>matlab</tt>. | ||
− | [leonhard@euler03 ~]$ module load matlab/8.2 | + | [leonhard@euler03 ~]$ '''module load matlab/8.2''' |
− | [leonhard@euler03 ~]$ matlab | + | [leonhard@euler03 ~]$ '''matlab''' |
Warning: No display specified. You will not be able to display graphics on the screen. | Warning: No display specified. You will not be able to display graphics on the screen. | ||
Warning: No window system found. Java option 'Desktop' ignored. | Warning: No window system found. Java option 'Desktop' ignored. | ||
Line 17: | Line 17: | ||
− | >> vpa(exp(1),50) | + | >> '''vpa(exp(1),50)''' |
ans = | ans = |
Revision as of 12:31, 25 August 2016
You can run an interactive MATLAB session on the login node, to do some quick tests, but larger calculations must be submitted through the batch system. In order to start an interactive MATLAB session, load the matlab module and type the command matlab.
[leonhard@euler03 ~]$ module load matlab/8.2 [leonhard@euler03 ~]$ matlab Warning: No display specified. You will not be able to display graphics on the screen. Warning: No window system found. Java option 'Desktop' ignored. < M A T L A B (R) > Copyright 1984-2013 The MathWorks, Inc. R2013b (8.2.0.701) 64-bit (glnxa64) August 13, 2013 No window system found. Java option 'Desktop' ignored. To get started, type one of these: helpwin, helpdesk, or demo. For product information, visit www.mathworks.com. >> vpa(exp(1),50) ans = 2.7182818284590455348848081484902650117874145507812 >>
If you have established an SSH connection with X11 forwarding enabled, then the matlab command will start the MATLAB GUI.