Difference between revisions of "Matlab"

From IBERS Bioinformatics and HPC Wiki
Jump to: navigation, search
Line 9: Line 9:
 
In order to demonstrate this running, here is a simple hello world program written in matlab.
 
In order to demonstrate this running, here is a simple hello world program written in matlab.
  
<nowiki>[mjv08@bert ~]$ cat hello.m </nowiki>
+
  [mjv08@bert ~]$ cat hello.m  
  
 
   fprintf ( 1, '  Hello, IBERS!\n' );
 
   fprintf ( 1, '  Hello, IBERS!\n' );
  
 
   quit
 
   quit

Revision as of 11:13, 16 July 2013

Matlab

Currently we have a license to run matlab on one node. If there is a high demand for this facility then we will look into aquiring more licenses.

The license runs on node001, which is the large memory node, accessible via the large.q in SGE.

NOTE: This license only allows one user at a time to use the license on this node.

In order to demonstrate this running, here is a simple hello world program written in matlab.

 [mjv08@bert ~]$ cat hello.m 
 fprintf ( 1, '  Hello, IBERS!\n' );
 quit