如果您输入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
答案 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的图形版本。