R2014a Error Box Too many input arguments Always Appearing - Buggy.
2 views (last 30 days)
Show older comments
I recently got R2014a on my computer from the previous version and whenever I try to run any command, such as "N=20;" or even click on the variable N in the variable workspace, it provides this error:
Message Box title: Variables Too many input arguments. fliplr 13
I'm thinking this particular Matlab version is buggy since no-where in my code, do I use the 'fliplr' function. Has anybody else has problems with it.
3 Comments
mohammad jolaei
on 11 Apr 2023
Hello, I have the same problem, I use flipud(fliplr(S)) in my function and I get the same error as you get all the time. I tried commenting this command on my code and still I get this error.
Answers (1)
Steven Lord
on 11 Apr 2023
You likely have a different fliplr.m on the MATLAB search path that's preventing MATLAB from calling the version included in MATLAB and that fliplr.m doesn't behave the same way as the version of that function in MATLAB. Run the following command and look for any fliplr.m files that are not under the matlabroot directory.
which -all fliplr
Line 13 of the fliplr function included in MATLAB calls flip so you may also want to check for a shadowing flip.m file.
dbtype 1:13 toolbox/matlab/elmat/fliplr.m
which -all flip
0 Comments
See Also
Categories
Find more on Search Path in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!