parpool Undefined function or variable
12 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Walter Roberson
on 14 Dec 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 Comments
See Also
Categories
Find more on Parallel Computing Fundamentals in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!