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

    function [p, v] = thisinfo(this)
%THISINFO   

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

[p, v] = basefilter_info(this);

if isfdtbxinstalled && isprop(this, 'Arithmetic')
    
    p{end+1} = 'spacer';
    v{end+1} = 'spacer';
    
    p{end+1} = getString(message('signal:dfilt:info:Arithmetic'));
    v{end+1} = get(this, 'Arithmetic');
        
    [f, c] = info(this.filterquantizer);

    if ~isempty(f)
        p = [p f(:)'];
        v = [v c(:)'];
    end
end

% [EOF]