Main Content

help

Help for toolbox functions in Command Window

Syntax

help class/function

Arguments

class

A Parallel Computing Toolbox™ object class, for example, parallel.cluster, parallel.job, or parallel.task.

function

A function or property of the specified class. To see what functions or properties are available for a class, see the methods or properties reference page.

Description

help class/function returns command-line help for the specified function of the given class.

If you do not know the class for the function, use class(obj), where function is of the same class as the object obj.

Examples

Get help on functions or properties from Parallel Computing Toolbox object classes.

help parallel.cluster/createJob
help parallel.job/cancel
help parallel.task/wait

c = parcluster();
j1 = createJob(c);
class(j1)
parallel.job.CJSIndependentJob
help parallel.job/createTask
help parallel.job/AdditionalPaths

Version History

Introduced before R2006a

See Also