view m-toolbox/classes/@LTPDAworkbench/cb_blockdoc.m @ 26:ce4df2e95a55 database-connection-manager

Remove LTPDARepositoryManager initialization
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% CB_BLOCKDOC gets documentation for the selected block
%
% CALL:  LTPDAworkbench.cb_blockdoc
%
% M Hewitson 25-01-09
%
% $Id: cb_blockdoc.m,v 1.4 2010/08/06 19:10:48 ingo Exp $
%

function cb_blockdoc(varargin)
  
  wb = varargin{1};
  
  % Get all selected blocks
  sbs = awtinvoke(wb.mp, 'getSelectedBlocks');
  if sbs.size() > 0
    block = sbs.get(0);
    
    cl = char(block.getMinfo.getMclass);
    algo = char(block.getAlgo);
    
    % workaround for abstract classes because the help for these classes
    % are hidden.
    if strcmpi(cl, 'ltpda_uo')
      cl = 'plist';
    elseif strcmpi(cl, 'ltpda_uoh')
      cl = 'ao';
    elseif strcmpi(cl, 'ltpda_tf')
      cl = 'pzmodel';
    elseif strcmpi(cl, 'ltpda_filter')
      cl = 'miir';
    end
    
    if ~strcmp(cl, algo)
      cmd = ['doc ' cl '/' algo];
    else
      cmd = ['doc ' algo];
    end
    eval(cmd)
    
  end
  
end