Changes between Initial Version and Version 1 of cypress/Matlab


Ignore:
Timestamp:
08/13/15 10:29:47 (9 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Matlab

    v1 v1  
     1
     2= Matlab =
     3MATLAB (matrix laboratory) is a proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations,
     4plotting of functions and data, implementation of algorithms, and creation of user interfaces.
     5
     6You can run your Matlab codes on Cypress clusters but you can't use GUI(Graphical User Interface) on computing nodes.
     7
     8== Run MATLAB interactively ==
     9Start an interactive session,
     10{{{#!bash
     11[fuji@cypress2 ~]$ idev
     12Requesting 1 node(s)  task(s) to normal queue of defq partition
     131 task(s)/node, 20 cpu(s)/task, 2 MIC device(s)/node
     14Time: 0 (hr) 60 (min).
     15Submitted batch job 47343
     16JOBID=47343 begin on cypress01-063
     17--> Creating interactive terminal session (login) on node cypress01-063.
     18--> You have 0 (hr) 60 (min).
     19Last login: Mon Jun  8 20:18:50 2015 from cypress1.cm.cluster
     20}}}
     21Load the module
     22{{{#!bash
     23[fuji@cypress01-063 ~]$ module load matlab
     24}}}
     25Run MATLAB on the command-line window,
     26{{{#!bash
     27[fuji@cypress01-063 ~]$ matlab
     28MATLAB is selecting SOFTWARE OPENGL rendering.
     29
     30                                                                                         < M A T L A B (R) >
     31                                                                               Copyright 1984-2015 The MathWorks, Inc.
     32                                                                               R2015a (8.5.0.197613) 64-bit (glnxa64)
     33                                                                                          February 12, 2015
     34
     35
     36To get started, type one of these: helpwin, helpdesk, or demo.
     37For product information, visit www.mathworks.com.
     38
     39
     40        Academic License
     41
     42>>
     43}}}
     44You can run MATLAB code but no graphics.