Matlab help is not working
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 26 Lug 2020
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
Risposte (1)
Matt J
il 26 Lug 2020
Modificato: Matt J
il 26 Lug 2020
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.
Vedere anche
Categorie
Scopri di più su Install Products in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!