view m-toolbox/classes/@param/string.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 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % STRING writes a command string that can be used to recreate the input param object.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: STRING writes a command string that can be used to recreate the
+ − % input param object.
+ − %
+ − % CALL: cmd = string(param_obj)
+ − %
+ − % INPUT: param_obj - parameter object
+ − %
+ − % OUTPUT: cmd - command string to create the input object
+ − %
+ − % VERSION: $Id: string.m,v 1.13 2011/02/18 16:48:53 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = string(varargin)
+ −
+ − objs = [varargin{:}];
+ −
+ − cmd = '';
+ −
+ − for ii = 1:numel(objs)
+ −
+ − key = objs(ii).key;
+ − val = objs(ii).getVal;
+ −
+ − if ischar(val)
+ − val_str = ['''' strrep(val, '''', '''''') ''''];
+ − elseif isnumeric(val)
+ − val_str = mat2str(val);
+ − elseif isa(val, 'ltpda_obj')
+ − val_str = string(val);
+ − elseif iscell(val)
+ − val_str = utils.prog.mcell2str(val);
+ − else
+ − error('### Unknown object [%s]', class(val));
+ − end
+ −
+ − cmd = [cmd 'param(''' key ''', ' val_str ') '];
+ − end
+ −
+ − %%% Wrap the command only in bracket if the there are more than one object
+ − if numel(objs) > 1
+ − cmd = ['[' cmd(1:end-1) ']'];
+ − end
+ −
+ − %%% Prepare output
+ − varargout{1} = cmd;
+ − end
+ −