MATLAB PARALLEL COMPUTING TOOLBOX - S Betriebsanweisung Seite 509

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 656
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 508
load
11-165
S = load(job ...) returns the contents of job into variable S, which is a struct
containing fields matching the variables retrieved.
Examples
Run a batch job and load its results into your client workspace.
j = batch('myScript');
wait(j)
load(j)
Load only variables whose names start with 'a'.
load(job, 'a*')
Load only variables whose names contain any digits.
load(job, '-regexp', '\d')
See Also
batch | fetchOutputs
Seitenansicht 508
1 2 ... 504 505 506 507 508 509 510 511 512 513 514 ... 655 656

Kommentare zu diesen Handbüchern

Keine Kommentare