view m-toolbox/classes/@pz/char.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
% CHAR convert a pz object into a string.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: CHAR convert a pz object into a string.
%
% CALL: string = char(obj)
%
% VERSION: $Id: char.m,v 1.9 2011/02/18 16:48:54 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function varargout = char(varargin)
objs = utils.helper.collect_objects(varargin(:), 'pz');
pstr = '';
for ii = 1:numel(objs)
pp = objs(ii);
% f and Q
pstr = [pstr sprintf('(f=%g Hz, Q=%g, ri=%s), ', pp.f, pp.q, mat2str(pp.ri(1), 4))];
end
%%% Prepare output
varargout{1} = pstr(1:end-2);
end