view m-toolbox/classes/@matrix/display.m @ 0:f0afece42f48
Import.
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Wed, 23 Nov 2011 19:22:13 +0100 (2011-11-23) |
parents |
|
children |
|
line source
% DISPLAY overloads display functionality for matrix objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: DISPLAY overloads display functionality for matrix objects.
%
% CALL: txt = display(matrix)
%
% INPUT: matrix - matrix object
%
% OUTPUT: txt - cell array with strings which displays the matrix object
%
% <a href="matlab:utils.helper.displayMethodInfo('matrix', 'display')">Parameters Description</a>
%
% VERSION: $Id: display.m,v 1.8 2011/04/08 08:56:31 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function varargout = display(varargin)
%%% Check if this is a call for parameters
if utils.helper.isinfocall(varargin{:})
varargout{1} = getInfo(varargin{3});
return
end
objs = utils.helper.collect_objects(varargin(:), 'matrix');
txt = {};
% Print emtpy object
if isempty(objs)
hdr = sprintf('------ %s -------', class(objs));
ftr(1:length(hdr)) = '-';
txt = [txt; {hdr}];
txt = [txt; sprintf('empty-object [%d,%d]',size(objs))];
txt = [txt; {ftr}];
end
for i=1:numel(objs)
banner = sprintf('---- matrix %d ----', i);
txt{end+1} = banner;
% get key and value
name = objs(i).name;
% display
txt{end+1} = [' name: ' name];
txt{end+1} = [' size: ' num2str(size(objs(i).objs, 1)) 'x' num2str(size(objs(i).objs, 2))];
for kk=1:numel(objs(i).objs)
txt{end+1} = [sprintf(' %02d: %s | ', kk, class(objs(i).objs(kk))) char(objs(i).objs(kk))];
end
txt{end+1} = ['description: ' objs(i).description];
txt{end+1} = [' UUID: ' objs(i).UUID];
banner_end(1:length(banner)) = '-';
txt{end+1} = banner_end;
end
if nargout == 0
for ii=1:length(txt)
disp(txt{ii});
end
else
varargout{1} = txt;
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Local Functions %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% FUNCTION: getInfo
%
% DESCRIPTION: Get Info Object
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function ii = getInfo(varargin)
if nargin == 1 && strcmpi(varargin{1}, 'None')
sets = {};
pl = [];
else
sets = {'Default'};
pl = getDefaultPlist;
end
% Build info object
ii = minfo(mfilename, 'matrix', 'ltpda', utils.const.categories.output, '$Id: display.m,v 1.8 2011/04/08 08:56:31 hewitson Exp $', sets, pl);
ii.setModifier(false);
ii.setOutmin(0);
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% FUNCTION: getDefaultPlist
%
% DESCRIPTION: Get Default Plist
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function plout = getDefaultPlist()
persistent pl;
if exist('pl', 'var')==0 || isempty(pl)
pl = buildplist();
end
plout = pl;
end
function pl = buildplist()
pl = plist.EMPTY_PLIST;
end