navigator_help.m

来自「Kriging插值matlab toolbox」· M 代码 · 共 46 行

M
46
字号
function      navigator_help(index)
%% function      navigator_help(index)
%% displays help file for navigator window
%%
%%  Kriging Software Package  version 3.0,   May 1, 2004
%%  Copyright (c) 2004, property of Dezhang Chu and Woods Hole Oceanographic
%%  Institution.  All Rights Reserved.

global hdl para

window_pos=[];

switch index
  case 1
     varname='Task - I';
     content={
        '   Load Data  --  Load the 2-D/3-D data file. ',
        '   ',
        '   Variogram  --  Compute semi-variogram/correlogram.',
        '   ',
        '            Krig  --  Perform kriging or batch kriging. ',
        '    ',
        'Visualization --  Display and save the kriged results. ', 
              };
  case 2
     varname='Task - II';
     content={
        'Save Window Position  --  Save the current window settings as the default settings,',
        '                             including window size and position. This settings will affect all',
        '                             of other task windows.',
        '       ',
        '    Quit    -- Quit Easykrig.'};
     
end
%p=general_message('no_action',varname,content);

if para.Matlab_Version == 5
     help_message(content,varname,[0 0 0]);
elseif para.Matlab_Version >= 6
     p=general_message('no_action',varname,content);
end




⌨️ 快捷键说明

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