Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 Configure MATLAB to run parallel jobs on your cluster by calling configCluster.  For each cluster, configCluster only needs to be called once per version of MATLAB, and once per user

>> configCluster

 

Local Configuration

After having installed MATLAB to your workstation 

...

Before specifying any parameters, you will need to obtain a handle to the cluster object.

>> % Get a handle to the cluster
>> c = parcluster;

You are required to specify an Account Name prior to submitting a job.

 

>> % Specify an Account to use for MATLAB jobs
>> c.AdditionalProperties.AccountName = ‘account_name’

 You can retrieve your Account Name / Bugdet 

You can specify other additional parameters along with your job.

...