view m-toolbox/classes/@minfo/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 minfo object.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: STRING writes a command string that can be used to recreate
+ − % the input minfo object.
+ − %
+ − % CALL: cmd = string(minfo)
+ − %
+ − % VERSION: $Id: string.m,v 1.1 2009/07/17 11:17:26 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = string(varargin)
+ −
+ − mi = utils.helper.collect_objects(varargin(:), 'minfo');
+ −
+ − cmd = '';
+ − for j=1:numel(mi)
+ −
+ − plstr = string(mi(j).plists);
+ − if isempty(plstr)
+ − plstr = '[]';
+ − end
+ −
+ − mistr = 'minfo(';
+ − mistr = [mistr, utils.helper.val2str(mi(j).mname), ', '];
+ − mistr = [mistr, utils.helper.val2str(mi(j).mclass), ', '];
+ − mistr = [mistr, utils.helper.val2str(mi(j).mpackage), ', '];
+ − mistr = [mistr, utils.helper.val2str(mi(j).mcategory), ', '];
+ − mistr = [mistr, utils.helper.val2str(mi(j).mversion), ', '];
+ − mistr = [mistr, utils.prog.cell2str(mi(j).sets), ', '];
+ − mistr = [mistr, plstr, ', '];
+ − mistr = [mistr, num2str(mi(j).argsmin), ', '];
+ − mistr = [mistr, num2str(mi(j).argsmax), ', '];
+ − mistr = [mistr, num2str(mi(j).outmin), ', '];
+ − mistr = [mistr, num2str(mi(j).outmax), ', '];
+ − mistr = [mistr, mat2str(mi(j).modifier), ') '];
+ −
+ − cmd = [cmd mistr];
+ −
+ − end
+ −
+ − %%% Wrap the command only with brackets if the there are more than one object
+ − if numel(mi) > 1
+ − cmd = ['[' cmd(1:end-1) ']'];
+ − end
+ −
+ − % set output
+ − varargout{1} = cmd;
+ − end
+ −