dispdlg.m

来自「实现地震勘探中」· M 代码 · 共 24 行

M
24
字号
function dispdlg(txt)% Generalization of disp function; text is written to screen if % S4M.interactive  == 0 and written to a dialog box if S4M.interactive  == 1%% Written by: E. R.: April 20, 2004% Last updated:%%          dispdlg(txt)% INPUT% txt      Text to display%global S4Mtry  if S4M.deployed || S4M.interactive     handle=msgdlg(txt);  else     disp(txt)  endcatch  disp(txt)end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?