List functions of object class
methods(obj)
out = methods(obj)
| An object or an array of objects. |
| Cell array of vectors. |
methods(obj)
returns the
names of all methods for the class of which obj
is
an instance.
out = methods(obj)
returns
the names of the methods as a cell array of vectors.
Create cluster, job, and task objects, and examine what methods are available for each.
c = parcluster(); methods(c) j1 = createJob(c); methods(j1) t1 = createTask(j1,@rand,1,{3}); methods(t1)