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

  • 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 563
11 Functions — Alphabetical List
11-220
parallel.exportProfile
Export one or more profiles to file
Syntax
parallel.exportProfile(profileName, filename)
parallel.exportProfile({profileName1, profileName2,...,
profileNameN}, filename)
Description
parallel.exportProfile(profileName, filename) exports the profile with the
name profileName to specified filename. The extension .settings is appended to the
filename, unless already there.
parallel.exportProfile({profileName1, profileName2,...,
profileNameN}, filename) exports the profiles with the specified names to
filename.
To import a profile, use parallel.importProfile or the Cluster Profile Manager.
Examples
Export the profile named MyProfile to the file MyExportedProfile.settings.
parallel.exportProfile('MyProfile','MyExportedProfile')
Export the default profile to the file MyDefaultProfile.settings.
def_profile = parallel.defaultClusterProfile();
parallel.exportProfile(def_profile,'MyDefaultProfile')
Export all profiles except for local to the file AllProfiles.settings.
allProfiles = parallel.clusterProfiles();
% Remove 'local' from allProfiles
Zobrazit stránku 563
1 2 ... 559 560 561 562 563 564 565 566 567 568 569 ... 655 656

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

Žádné komentáře