view m-toolbox/classes/@paramValue/getVal.m @ 1:2014ba5b353a database-connection-manager

Remove old code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Sat, 03 Dec 2011 18:13:55 +0100
parents f0afece42f48
children
line wrap: on
line source

% GETVAL returns the default value for this param value
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: GETVAL returns the default value for this param value
%
% CALL:        val = getVal(paramValue);
%
% VERSION:     $Id: getVal.m,v 1.4 2011/02/18 16:48:53 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = getVal(varargin)
  
  if (varargin{1}.valIndex >= 1)
    varargout{1} = varargin{1}.options{varargin{1}.valIndex};
  else
    varargout{1} = [];
  end
   
end