www.gusucode.com > signal 工具箱matlab源码程序 > signal/@filtdes/@fircbandbspassstop/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, 'Fpass1') get(d, 'Fstop1') get(d, 'Fstop2') get(d, 'Fpass2') 1];
A = [1 1 0 0 1 1];

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

args = {};

% [EOF]