Queue job in scheduler
submit(j)
| Job object to be queued. |
submit(j) queues the job
object j in its cluster queue. The cluster used
for this job was determined when the job was created.
Find the MJS cluster identified by the cluster profile Profile1.
c1 = parcluster('Profile1');
Create a job object in this cluster.
j1 = createJob(c1);
Add a task object to be evaluated for the job.
t1 = createTask(j1,@rand,1,{8,4});
Queue the job object in the cluster for execution.
submit(j1);
createCommunicatingJob | createJob | findJob | parcluster | promote | recreate