Windows 10 R2015a getMapfileName

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?

Answers (1)

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.

Categories

Find more on Programming in Help Center and File Exchange

Asked:

on 2 Nov 2015

Answered:

on 2 Nov 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!