show_help4novice.m
来自「地震、测井方面matlab代码,解释的比较详细」· M 代码 · 共 21 行
M
21 行
function hmsgh=show_help4novice(index)
% Display message window with help info if the field "experience" of global
% structure S4M is set to -1.
global S4M HELP4NOVICE
hmsgh=[];
if isempty(HELP4NOVICE)
return
end
if S4M.experience < 0
txt=tokens(HELP4NOVICE{index},'\');
CreateMode.WindowStyle='replace';
CreateMode.Interpreter='tex';
hmsgh=msgbox(txt,S4M.name,'help',CreateMode);
% uiwait(hmsgh);
drawnow
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?