本地功能文档

在这个例子中,本地函数 baz(在 foo.m 中定义)的文档可以通过 help foo 中的结果链接访问,也可以直接通过 help foo>baz 访问。

function bar = foo
%This is documentation for FOO.
% See also foo>baz

% This wont be printed, because there is a line without % on it.
end

function baz
% This is documentation for BAZ.
end