R2014a Error Box Too many input arguments Always Appearing - Buggy.
Mostra commenti meno recenti
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 Commenti
Image Analyst
il 27 Mar 2015
No. No one else does. Assigning a value to N should not cause the fliplr() function to execute. Attach your script.
beamer benz
il 27 Mar 2015
Modificato: beamer benz
il 27 Mar 2015
mohammad jolaei
il 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.
Risposte (1)
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
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!