MATLAB 2017 Editor Causing Error: Error in rmiml.visibleInToolstrip
조회 수: 7 (최근 30일)
이전 댓글 표시
I just upgraded from MATLAB 2016b to 2017a. When I start up with the editor closed it initializes just fine. When the editor window is opened, or if it is opened on start up I get the following errors.
Cell contents reference from a non-cell array object.
Error in contains (line 8) TF = strcmpi(str{1}(k{1}:(length(pattern)+k{1}-1)),pattern);
Error in rmi.isInstalled
Error in rmiml.visibleInToolstrip
Cell contents reference from a non-cell array object.
Error in contains (line 8) TF = strcmpi(str{1}(k{1}:(length(pattern)+k{1}-1)),pattern);
Error in rmi.isInstalled
Error in rmiml.visibleInToolstrip.
This happens every time a new .m file is opened. It also happens sometimes when running a script (not sure why it does in some cases and not in others), it makes opening and working with files lag as it is constantly dealing with this error. I have uninstalled and reinstalled which did not change anything. This is on a Windows 10 machine.
댓글 수: 5
Simon de Szoeke
2017년 8월 1일
편집: Simon de Szoeke
2017년 8월 1일
Yes, I had an old date.m on my path in one of my libraries. I renamed it so now this is the only date.m:
>> which -all date
/Applications/MATLAB_R2017a.app/toolbox/matlab/timefun/date.m
Now I can open files from the command window without the error. So far, so good. Thank you, Walter Roberson.
답변 (1개)
Sangeetha Jayaprakash
2017년 5월 24일
편집: Sangeetha Jayaprakash
2017년 5월 24일
I am assuming you are using MATLAB R2017a.
Can you check if you have multiple pathdef.m files in your path? You can do this by running the following command in MATLAB:
which -all pathdef.m
The ‘pathdef.m’ that is currently used must be the one pertaining to MATLAB R2017a.
If an older ‘pathdef.m’ exists, it will shadow the new one and does not add the directory to the path. If you have an older ‘pathdef.m’,try renaming it and see if it fixes the error.
참고 항목
카테고리
Help Center 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!