Matlab help is not working
이전 댓글 표시
I have installed Matlab version 9.5.0.944444 (R2018b)
Now the matlab HELP service stopped to work.
What might be the reason for this failure?
Regards
Pekka Mertsalmi
댓글 수: 4
Rik
2020년 7월 26일
Can you provide more details about what you mean by the service stopped working? Is there any error message?
Image Analyst
2020년 7월 26일
I think the solution would be to install the latest version, r2020a. Not sure why you didn't, and installed an antique version.
If you can't/won't upgrade, then the FAQ covers your situation: Read the FAQ
Pekka Mertsalmi
2020년 7월 26일
Walter Roberson
2020년 7월 26일
Interestingly this is the same error as the recent https://www.mathworks.com/matlabcentral/answers/570886-unable-to-load-help-page-in-matlab?s_tid=srchtitle
답변 (1개)
Make sure that you are not overriding any functions called by help.m with mfiles of your own. For example, if you have your own mfile called strip.m, it may shadow the strip() method of Matlab's string class, which help.m does invoke.
One way to trap such problems is to activate the debugger with,
>> dbstop if caught error
and then test your call to help() again.
댓글 수: 2
Another good first troubleshooting step would be to
>>restoredefaultpath
and to disable any startup.m files you have.
Edmund Hodzen
2021년 3월 19일
That worked for me. Thanks
카테고리
도움말 센터 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!