MATLAB 2014a cannot enable parpool
Mostrar comentarios más antiguos
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 comentarios
Elwin Chan
el 12 de Jun. de 2014
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
el 16 de Jun. de 2014
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Parallel Computing Fundamentals en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!