parpool Undefined function or variable
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Greetings! I am trying to initialize parallel processing in Matlab 2015a - academic use, calling the function parpool(4), or whatever number I please, but when I do this I see the following error: Undefined function or variable 'parpool'. Is there a different function name for the "academic use" version, or does it not exist? Thanks!
0 commentaires
Réponses (1)
Walter Roberson
le 14 Déc 2015
parpool is a function in the Parallel Computing Toolkit, which is an optional toolkit that you would need to have a license for and would need to install.
You can use
license('test','Distrib_Computing_Toolbox')
to determine whether you are already licensed for the product but might not have it installed, and you can use
ver
to determine whether you have it installed (but possibly not licensed.)
Note: Parallel Processing Toolkit is not included in the usual Student Version license either.
0 commentaires
Voir également
Catégories
En savoir plus sur Parallel Computing Fundamentals dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!