如何在为#34; help"写的文字上大胆说出一句话。命令

时间:2014-06-09 09:37:07

标签: matlab

如果您输入help sin,您会注意到sin字是粗体。我怎样才能在自己的功能中实现这一目标?

%
% If I write things here, they will compare as a result of "help" command
% How to make something bold?
%
function result = myfunction(...)

% ...

end

1 个答案:

答案 0 :(得分:5)

它的工作方式如下:

function testfun()
    % this is the testfun help text
end

发出help testfun会让你

  

这是testfun帮助文本

但是当你在所有大写字母中写TESTFUN时,即

function testfun()
    % this is the TESTFUN help text
end

help testfun将显示

  

这是 testfun 帮助文本

请注意,这仅适用于该功能的名称,因此更改" text"到" TEXT"不会使文字大胆。此外,这似乎只适用于Matlab的图形版本。

进一步阅读:Add Help for Your Program