| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Parallel Computing Toolbox |
| Contents | Index |
| Learn more about Parallel Computing Toolbox |
You configure Tag to be a string value that uniquely identifies a job object.
Tag is particularly useful in programs that would otherwise need to define the job object as a global variable, or pass the object as an argument between callback routines.
You can return the job object with the findJob function by specifying the Tag property value.
Usage | Job object |
Read-only | Never |
Data type | String |
The default value is an empty string.
Suppose you create a job object in the job manager jm.
job1 = createJob(jm);
You can assign job1 a unique label using Tag.
set(job1,'Tag','MyFirstJob')
You can identify and access job1 using the findJob function and the Tag property value.
job_one = findJob(jm,'Tag','MyFirstJob');
![]() | SubmitTime | Task | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |