Can the `help` function parse functions defined in Live Scripts
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
When functions are defined in LiveScripts can their header comments be parsed by the help (or similiar) function to generate the help text?
When I explicitly point help to the function path recovered by which I get a message for the Live Script the function is defined in. I've recreated the behaviour here with the "online" Live Script embedded in questions but the output is the same in a local Live Script.
Thanks,
Rohan
which myQuestion
help myQuestion
help(which("myQuestion"))
function myQuestion()
%test this is the short help
% This is a longer explanation
disp("Hello World")
end
0 Kommentare
Antworten (1)
Varun
am 29 Aug. 2023
Hi Rohan,
I understand that comments inside a function is not able to be parsed by ‘help’ command on R2022a.
I ran it locally on R2022a and faced the same issue. This issue is fixed in R2023a which is the latest version of MATLAB.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!