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 + -
显示快捷键?