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

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

args = {};

% [EOF]