view m-toolbox/classes/+utils/@prog/prog.m @ 28:01b86b780ba7
database-connection-manager
Remove LTPDARepositoryManager implementation. Java code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % PROG helper class for prog utility functions.
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: PROG is a helper class for prog utility functions.
+ − %
+ − % To see the available static methods, call
+ − %
+ − % >> methods utils.prog
+ − %
+ − % HISTORY: M Hewitson 26-05-08
+ − % Creation
+ − %
+ − % VERSION: $Id: prog.m,v 1.19 2010/10/07 07:56:09 hewitson Exp $
+ − %
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − classdef prog
+ −
+ − %------------------------------------------------
+ − %--------- Declaration of Static methods --------
+ − %------------------------------------------------
+ − methods (Static)
+ −
+ −
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − % Info call
+ − function ii = getInfo(varargin)
+ − if nargin == 0
+ − VERSION = '$Id: prog.m,v 1.19 2010/10/07 07:56:09 hewitson Exp $';
+ − CATEGORY = 'Constructor';
+ − % Build info object
+ − ii = minfo(mfilename, mfilename, 'utils', CATEGORY, VERSION, {''}, plist);
+ − else
+ − if strcmp(varargin{1}, mfilename)
+ − ii = utils.prog.getInfo;
+ − else
+ − ii = eval(sprintf('utils.prog.%s(''INFO'');', varargin{1}));
+ − end
+ − end
+ − end
+ −
+ −
+ − %-------------------------------------------------------------
+ − % List other methods
+ − %-------------------------------------------------------------
+ −
+ − s = rstruct(varargin); % Recursive structure converter
+ − string = cell2str(cellstr); % Convert a cell array to string
+ − out = find_in_models(modelname,varargin);
+ − childrenHandles = findchildren(parentHandle,varargin)
+ − parentHandles = findparent(childHandle,varargin)
+ − varargout = gcbsh();
+ − pth = get_curr_m_file_path (m_file_name)
+ − fnames = fields2list(fields)
+ − files = filescan(root_dir, ext)
+ − dirs = dirscan(root_dir, pattern)
+ − h = funchash(fcnname)
+ − h = hash(inp,meth)
+ − newCell = str2cells(someString)
+ − cell = strs2cells(varargin)
+ − ss = rnfield(s,oldname,newname)
+ − out = structcat(varargin)
+ − so = strpad(varargin)
+ − s = wrapstring(s, n)
+ − varargout = disp(varargin)
+ − s = label(si)
+ − varargout = mcell2str(varargin)
+ − out = yes2true(in)
+ − r = mup2mat(r)
+ − output = convertComString(varargin)
+ − s = csv(x)
+ − bin = obj2binary(obj)
+ − xml = obj2xml(obj)
+ −
+ − end % End static methods
+ −
+ −
+ − end
+ −
+ − % END