www.gusucode.com > signal 工具箱matlab源码程序 > signal/@dfilt/@basefilter/classname.m

    function fstruct = classname(Hb)
%CLASSNAME Returns the class name of the object
%   CLASSNAME(Hb) Returns the class name of the object (the abbreviated 
%   filter structure)

% Author(s): J. Schickler
% Copyright 1988-2002 The MathWorks, Inc.

fstruct = get(Hb.classhandle, 'Name');

% [EOF]