MATLAB PARALLEL COMPUTING TOOLBOX - S Guía de usuario Pagina 645

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 656
  • Tabla de contenidos
  • SOLUCIÓN DE PROBLEMAS
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 644
wait
11-301
Note Simulink models cannot run while a MATLAB session is blocked by wait. If you
must run Simulink from the MATLAB client while also running jobs, you cannot use
wait.
Examples
Submit a job to the queue, and wait for it to finish running before retrieving its results.
submit(j);
wait(j,'finished')
results = fetchOutputs(j)
Submit a batch job and wait for it to finish before retrieving its variables.
j = batch('myScript');
wait(j)
load(j)
See Also
pause | resume | wait (GPUDevice) | wait (FevalFuture)
Vista de pagina 644
1 2 ... 640 641 642 643 644 645 646 647 648 649 650 ... 655 656

Comentarios a estos manuales

Sin comentarios