Versions Compared

Key

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

...

>> c.AdditionalProperties.AccountName = ‘account_name’

 

You can specify other additional parameters along with your job. 

>> % Specify a queue to use for MATLAB jobs
>> c.AdditionalProperties.QueueName =

...

 ‘shared’

 

>> % Specify e-mail address to receive notifications about your job
>> c.AdditionalProperties.EmailAddress = ‘test@foo.com

 

>> % Specify the walltime
>> c.AdditionalProperties.WallTime = '00:10:00'

...

>> % Specify processor cores per node.  Default is 16.

>> c.AdditionalProperties.ProcsPerNode =

...

 16

 

 

 

 

To see the values of the current configuration options, call the specific AdditionalProperties name. 

>> % To view current configurations
>> c.AdditionalProperties.QueueName

 

To clear a value, assign the property an empty value (‘’, [], or false).

>> % To clear a configuration that takes a string as input 
>> c.AdditionalProperties.EmailAddress =

Serial Jobs

Parallel Jobs

Debugging

...