简单的功能文档
function output = mymult(a, b)
% MYMULT Multiply two numbers.
% output = MYMULT(a, b) multiplies a and b.
%
% See also fft, foo, sin.
%
% For more information, see <a href="matlab:web('https://google.com')">Google</a>.
output = a * b;
end
help mymult
然后提供:
mymult 乘以两个数字。
output = mymult (a, b)乘以 a 和 b。
另见 fft,foo,sin。
有关更多信息,请参阅 Google 。
fft
和 sin
自动链接到各自的帮助文本,Google 是 google.com 的链接。只要在搜索路径上没有 foo
名称的文档功能/类,foo
就不会链接到这种情况下的任何文档。