Why is help() malfunctioning
古いコメントを表示
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 件のコメント
Matt J
2019 年 11 月 11 日
What happens with doc help ?
Catalytic
2019 年 11 月 11 日
per isakson
2019 年 11 月 11 日
編集済み: per isakson
2019 年 11 月 11 日
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.
採用された回答
その他の回答 (1 件)
Steven Lord
2019 年 11 月 11 日
0 投票
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.
カテゴリ
ヘルプ センター および File Exchange で Function Creation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!