Mercurial > hg > ltpda
view m-toolbox/classes/@provenance/string.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line source
% STRING writes a command string that can be used to recreate the input provenance object. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: STRING writes a command string that can be used to recreate the % input provenance object. % % CALL: cmd = string(obj) % % INPUT: obj - provenance object % % OUTPUT: cmd - command string to create the input object % % VERSION: $Id: string.m,v 1.8 2011/02/18 16:48:54 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function cmd = string(varargin) objs = [varargin{:}]; %%% Wrap the command only in bracket if the there are more than one object if length(objs) > 1 cmd = '['; else cmd = ''; end for j=1:length(objs) creator = objs(j).creator; cmd = [cmd 'provenance(''' creator ''') ']; end if length(objs) > 1 cmd = [cmd ']']; end end