segymathelp.m

来自「这是用matlab对segy数据进行处理」· M 代码 · 共 22 行

M
22
字号
function SegymatHelp(file);
  if nargin==0
    file='index';
  end
  
  [SegyMAT_root]=fileparts(which('ReadSegy'));
  
  docpath=[SegyMAT_root, filesep , 'html'];
  
  if isdir(docpath)
    helpfile=[docpath, filesep, file, '.html'];
    if exist(helpfile)
      web(['file://',helpfile])
    else
      SegymatVerbose(sprintf('Could not open help file : "%s"',helpfile))
    end
  else
    SegymatVerbose(sprintf('"%s" does not exist',docpath))
    SegymatVerbose('Cannot show local help')
    SegymatVerbose(sprintf('Trying to open the online help',docpath))
    web('http://segymat.sourceforge.net/doc/')
  end

⌨️ 快捷键说明

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