MATLAB PARALLEL COMPUTING TOOLBOX - S Uživatelská příručka Strana 442

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 656
  • Tabulka s obsahem
  • ŘEŠENÍ PROBLÉMŮ
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 441
11 Functions — Alphabetical List
11-98
specified property-value pairs, p1, v1, p2, v2, etc. The property name must be in the
form of a string, with the value being the appropriate type for that property. For a match,
the object property value must be exactly the same as specified, including letter case. For
example, if a task’s Name property value is MyTask, then findTask will not find that
object while searching for a Name property value of mytask.
Examples
Create a job object.
c = parcluster();
j = createJob(c);
Add a task to the job object.
createTask(j, @rand, 1, {10})
Find all task objects now part of job j.
t = findTask(j)
More About
Tips
If job j is contained in a remote service, findTask will result in a call to the remote
service. This could result in findTask taking a long time to complete, depending on the
number of tasks retrieved and the network speed. Also, if the remote service is no longer
available, an error will be thrown.
See Also
createJob | createTask | findJob
Zobrazit stránku 441
1 2 ... 437 438 439 440 441 442 443 444 445 446 447 ... 655 656

Komentáře k této Příručce

Žádné komentáře