jobStartup
File for user-defined options to run when job starts
Syntax
Description
jobStartup(
runs automatically on a
worker the first time that worker evaluates a task for a particular job. You do not
call this function from the client session, nor explicitly as part of a task
function.job
)
To define the job initialization actions on the worker, add MATLAB® code to the jobStartup.m
file. The worker looks for
jobStartup.m
in this order, executing the first one it
finds:
Included in the
AttachedFiles
property of the job.In a folder included in the
AdditionalPaths
property of the job.In the worker MATLAB installation at this location:
matlabroot/toolbox/parallel/user/jobStartup.m
To create a version of the jobStartup.m
file for the
AttachedFiles
or AdditionalPaths
properties, copy the provided file and modify it as required.
matlabroot/toolbox/parallel/user/jobStartup.m
jobStartup
and its
implementation, see the text in the installed jobStartup.m
file.Input Arguments
Version History
Introduced before R2006a