MATLAB PARALLEL COMPUTING TOOLBOX - S Podręcznik Użytkownika Strona 488

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
Przeglądanie stron 487
11 Functions — Alphabetical List
11-144
isdistributed
True for distributed array
Syntax
tf = isdistributed(X)
Description
tf = isdistributed(X) returns true for a distributed array, or false otherwise. For
a description of a distributed array, see “Nondistributed Versus Distributed Arrays” on
page 5-2.
Examples
With a running parallel pool,
L = ones(100,1);
D = ones(100,1,'distributed');
isdistributed(L) % returns false
isdistributed(D) % returns true
See Also
iscodistributed
Przeglądanie stron 487
1 2 ... 483 484 485 486 487 488 489 490 491 492 493 ... 655 656

Komentarze do niniejszej Instrukcji

Brak uwag