How do I retrieve details belonging to a particular job after I disconnect from my MATLAB session and connect later, in the Parallel Computing Toolbox 4.3 (R2010a) ?

3 views (last 30 days)
I would like to retrieve details belonging to a particular job after I disconnect from your MATLAB session and connect later.

Answers (1)

Sanchali Purandare
Sanchali Purandare on 16 Jan 2011
If you already do not have the job object, then the findJob command could be used to accomplish this in the following manner: (else you can directly save the job object to a file)
>> out = findJob(sched)
The command above returns an array, out, of all job objects stored in the scheduler sched. Jobs in the array are ordered by the ID property of the jobs, indicating the sequence in which they were created.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!