本地功能文件

在這個例子中,本地函式 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