Why is help() malfunctioning
Mostrar comentarios más antiguos
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 comentarios
Matt J
el 11 de Nov. de 2019
What happens with doc help ?
Catalytic
el 11 de Nov. de 2019
per isakson
el 11 de Nov. de 2019
Editada: per isakson
el 11 de Nov. de 2019
On my R2018b
>> help help
help Display help text in Command Window.
help NAME displays the help for the functionality specified by NAME,
such as a function, operator symbol, method, class, or toolbox.
NAME can include a partial path.
.... in total 43 lines
and type help displays the function in Command Window.
That doesn't help you and I have no idea.
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 11 de Nov. de 2019
0 votos
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 comentario
Catalytic
el 11 de Nov. de 2019
Categorías
Más información sobre Function Creation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!