view m-toolbox/sltpda/sltpda_getvar.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

function varout = sltpda_getvar(block, var)
% SLTPDA_GETVAR gets a mask value from a block. If the value can be
% numeric, it is returned as numeric, otherwise, it is left as a string.
% 
% usage: varout = sltpda_getvar(block, 'var');
% 
% M Hewitson 04-05-07
% 
% $Id: sltpda_getvar.m,v 1.1 2007/05/06 12:17:38 hewitson Exp $

varout = get(block, var);
if ~isempty(str2num(varout))
  varout = str2num(varout);
end