Mercurial > hg > ltpda
diff m-toolbox/classes/@paramValue/display.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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@paramValue/display.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,57 @@ +% DISPLAY display a parameter value +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: DISPLAY display a parameter value +% Is called for the parameter value object when the semicolon is not used. +% +% CALL: paramValue(1, {pi}, 0) +% txt = display(paramValue(1, {pi}, 0)); +% +% VERSION: $Id: display.m,v 1.4 2011/02/18 16:48:53 ingo Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = display(varargin) + + objs = [varargin{:}]; + + txt = {}; + MAX_DISP = 60; + + for ii = 1:numel(objs) + banner = sprintf('---- paramValue %d ----', ii); + txt{end+1} = banner; + + %%%%%%%%%%%%%%%%%%%% Add Property 'key' %%%%%%%%%%%%%%%%%%%% + if (objs(ii).valIndex >= 1) + txt{end+1} = sprintf('used value: %s', utils.helper.val2str(objs(ii).getVal, 60)); + txt{end+1} = ' '; + end + + options = utils.helper.val2str(objs(ii).options, MAX_DISP); + + txt{end+1} = sprintf(' val index: %s', mat2str(objs(ii).valIndex)); + txt{end+1} = sprintf(' options: %s', options); + txt{end+1} = sprintf(' selection: %s', paramValue.getSelectionMode(objs(ii).selection)); + + names = fieldnames(objs(ii).property); + for nn = 1:numel(names) + txt{end+1} = sprintf('%10s: %s', names{nn}, utils.helper.val2str(objs(ii).property.(names{nn}))); + end + + banner_end(1:length(banner)) = '-'; + txt{end+1} = banner_end; + + end + + %%% Prepare output + if nargout == 0 + for ii=1:length(txt) + disp(sprintf(txt{ii})); + end + elseif nargout == 1 + varargout{1} = txt; + end + +end +