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

    function [F, A, W, args] = getarguments(h, d)
%GETARGUMENTS Return the design method arguments

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

F = [0 get(d, 'Fstop1') get(d, 'Fpass1') get(d, 'Fpass2') get(d, 'Fstop2') 1];
A = [0 0 1 1 0 0];

mu = get(d, 'magUnits'); set(d, 'magUnits', 'linear');
W = [get(d, 'Dstop1') 1 get(d, 'Dstop2')]; set(d, 'magUnits', mu);

args = {};

% [EOF]