view m-toolbox/classes/@paramValue/getVal.m @ 29:54f14716c721 database-connection-manager

Update Java code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +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