MATLAB Persistent plot legend error in recent install of R2015b

AI Thread Summary
A user encountered an error when trying to insert a legend in MATLAB R2015b on a Windows 10 PC, receiving a message about too many input arguments. The issue arose after modifying the default path, and the user noted that resetting the path to default was not a viable solution due to the need for custom paths in their code. Suggestions included using the command "opengl software" and searching the MATLAB Answers forum for similar error messages. The user expressed frustration and considered using a different PC that does not exhibit the same problem.
grumpymrgruff
Messages
16
Reaction score
2
Hey PFers. I recently did an install of Matlab R2015b on a x64 Windows 10 PC. It doesn't matter what I plot or how I plot it (e.g., plot(), scatter(),etc.), when I use the figure dropdown menu Insert→Legend I get the following error
Code:
Error using assert
Too many input arguments.

Error in matlab.graphics.shape.internal.AxesLayoutManager.getManager

Error in legendcolorbarlayout (line 19)
hManager  = matlab.graphics.shape.internal.AxesLayoutManager.getManager(hAx);

Error in matlab.graphics.illustration.Legend/setAxesImpl

Error in matlab.graphics.illustration.Legend/set.Axes_I

Error in matlab.graphics.illustration.Legend/set.Axes

Error in legend>make_legend (line 332)
leg.Axes = ha;

Error in legend (line 233)
            [h,msg] = make_legend(ha,args(arg+1:end),version);

Error in insertmenufcn (line 58)
                    leg = legend(cax,'show');
Error while evaluating Menu Callback

I've googled a bit, but there seem to be many ways to generate these errors. The only reliable fix from MATLAB support is to reset the path to default, but this isn't an option when it comes to running my code.

Has anyone experienced this and found a fix that doesn't mess with the path? Thanks!
 
Physics news on Phys.org
Why is that not an option? You can always call restoredefaultpath and then just set your custom path afterwards.
 
Image Analyst said:
Why is that not an option? You can always call restoredefaultpath and then just set your custom path afterwards.
Thanks, I tried that. It seems to happen after I add anything to the default path. I've gone through everything in the added directories to make sure there weren't any functions sharing names with MATLAB defaults.

I'm probably just going to use another PC (also x64 and same OS) that doesn't seem to have the problem. *shrugs*
 
grumpymrgruff said:
Thanks, I tried that. It seems to happen after I add anything to the default path. I've gone through everything in the added directories to make sure there weren't any functions sharing names with MATLAB defaults.

I'm probably just going to use another PC (also x64 and same OS) that doesn't seem to have the problem. *shrugs*
Try the command

Code:
opengl software

If that doesn't work, try searching the MATLAB Answers forum for various terms in your error message, for example http://www.mathworks.com/matlabcentral/answers/?term=AxesLayoutManager
 
Back
Top