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

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

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

if isdb(d),
    astop = get(d, 'Astop1');
else
    astop = get(d, 'Dstop1');
end

cmd{1}.magfcn     = 'stop';
cmd{1}.amplitude  = astop;
cmd{1}.filtertype = 'highpass';

cmd{2} = [];
cmd{3} = [];

% [EOF]