簡單的功能文件

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

fftsin 自動連結到各自的幫助文字,Google 是 google.com 的連結。只要在搜尋路徑上沒有 foo 名稱的文件功能/類,foo 就不會連結到這種情況下的任何文件。