Windows 10 R2015a getMapfileName
Afficher commentaires plus anciens
I recently updated my computer to windows 10. I run Matlab R2015a and use the same code that I have used before for my research. I'm getting the error "Problem finding getMapfileName in com.mathworks.mlwidgets.help.HelpUtils: null" on a code that I've used many times before the update. Does anyone know a solution?
Réponses (1)
Walter Roberson
le 2 Nov 2015
Derek, is the error occurring after multiple executions of a loop? If so then there is a possibility that a file is being opened in the loop but not being closed (possibly within a MATLAB routine rather than your code.) If you do not have any of your own files open at that point, try adding
close('all')
right after whatever call is resulting in the above error being printed out.
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!