Why is help() malfunctioning

5 views (last 30 days)
Catalytic
Catalytic on 11 Nov 2019
Edited: Matt J on 6 Dec 2020
Matlab seems to know that the help command is there, at least as far as which() is concerned
>> which -all help
C:\Program Files\MATLAB\R2019a\toolbox\matlab\helptools\help.m
And yet, I get this,
>> help help
help not found.
Use the Help browser search field to search the documentation, or
type "help help" for help command options, such as help for methods.
Any idea why this is happening?
  5 Comments
Matt J
Matt J on 11 Nov 2019
Edited: Matt J on 11 Nov 2019
So help was discontinued after R2018b. Interesting...
Catalytic
Catalytic on 3 Dec 2019
Edited: Catalytic on 3 Dec 2019
Upgraded to R2019b and the problem has disappeared. I'm glad they decided to bring help back in 2019b. I sorely missed it.

Sign in to comment.

Accepted Answer

Matt J
Matt J on 6 Dec 2020
I ran into this problem later. The problem turned out to be that Mathworks help.m file uses a command called strip(). This function was being shadowed by my own strip.m file that was higher in the path. Generally speaking, you need to be sure that help.m and its dependencies are higher on the path than any user-defined mfiles.
  2 Comments
John D'Errico
John D'Errico on 6 Dec 2020
In general, that is ALWAYS true. But better, never define a function with the same name as an existing function name in MATLAB. If you do so, then expect arbitrarily random things to break.
Matt J
Matt J on 6 Dec 2020
Edited: Matt J on 6 Dec 2020
That doesn't help if your function predates the Mathworks' version, unfortunately... IMHO, functions as critical as help() and doc() should be implemented as a built-in, not as an mfile.

Sign in to comment.

More Answers (1)

Steven Lord
Steven Lord on 11 Nov 2019
The output you posted for help doc doesn't match the help text I see when I run that command. Did you post exactly what you see or did you paraphrase?
In release R2019a, what is the last line of your help.m file? In my installation it is a blank line, line 67. The copyright line (line 41) states 1984-2019. Can you confirm that you see the same?
In my installation, doc.m has 209 lines with line 209 being a blank line. The last function in doc.m is displayFile. The copyright line (line 45) reads 1984-2013. Can you confirm that you see the same?
I'm wondering if you accidentally copied versions of help.m file (and maybe doc.m) from an older release of MATLAB.
  1 Comment
Catalytic
Catalytic on 11 Nov 2019
Thank you, Steven. Nothing I posted was paraphrased and regarding everything you have described about help.m and doc.m, I see the same.

Sign in to comment.

Categories

Find more on Help and Support in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!