MATLAB 2014a cannot enable parpool
이전 댓글 표시
Hi, I tried to enable parpool in MATLAB 2014a, it gives following message Error using parpool (line 99) The operation must modify one or more Settings files for these levels: factory, user, but you do not have write permission on these levels: user.
Error in parallel.internal.ui.PoolHelper.startPool (line 11) parpool();
I have all permissions, I tried to uninstall and install again, but after one or two days, this problem come out again
댓글 수: 4
Elwin Chan
2014년 6월 12일
Hi Ming,
Can you tell me:
- what platform you are running on?
- where is the MATLAB installation?
- what is the location of your preferences directory and do you have full read/write access to that location?
You can find the preferences directory using the
prefdir
command in MATLAB.
If you close MATLAB and then delete parallel.settings file in your preferences directory and try again, does the error still occur?
If that doesn't fix it, then please try the following code in MATLAB:
s = Settings;
s.parallel
s.parallel.addNode('test')
s.parallel.test.addKey('testKey')
s.parallel.test.isSet('testKey')
s.parallel.removeNode('test')
Thanks,
Elwin
Elwin Chan
2014년 6월 16일
Hi Ming,
Thanks for the info. When it is not working, please can you try the following code and reply with the results? (The code won't fix the problem, but might help to diagnose the issue.)
s = Settings;
s.parallel
s.parallel.addNode('test')
s.parallel.test.addKey('testKey')
s.parallel.test.isSet('testKey')
s.parallel.removeNode('test')
Thanks,
Elwin
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!