www.gusucode.com > signal 工具箱matlab源码程序 > signal/@filtdes/@hpweight/maskinfo.m

    function cmd = maskinfo(hObj, d)
%MASKINFO Return the mask information

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

cmd{1}.magfcn     = 'wstop';
cmd{1}.filtertype = 'highpass';
cmd{1}.weight     = get(d, 'Wstop');

cmd{2}.magfcn     = 'wpass';
cmd{2}.filtertype = 'highpass';
cmd{2}.weight     = get(d, 'Wpass');

% [EOF]