Why is help() malfunctioning

3 visualizzazioni (ultimi 30 giorni)
Catalytic
Catalytic il 11 Nov 2019
Modificato: Matt J il 6 Dic 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 Commenti
Matt J
Matt J il 11 Nov 2019
Modificato: Matt J il 11 Nov 2019
So help was discontinued after R2018b. Interesting...
Catalytic
Catalytic il 3 Dic 2019
Modificato: Catalytic il 3 Dic 2019
Upgraded to R2019b and the problem has disappeared. I'm glad they decided to bring help back in 2019b. I sorely missed it.

Accedi per commentare.

Risposta accettata

Matt J
Matt J il 6 Dic 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 Commenti
John D'Errico
John D'Errico il 6 Dic 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 il 6 Dic 2020
Modificato: Matt J il 6 Dic 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.

Accedi per commentare.

Più risposte (1)

Steven Lord
Steven Lord il 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 Commento
Catalytic
Catalytic il 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.

Accedi per commentare.

Categorie

Scopri di più su Function Creation in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by