www.gusucode.com > signal 工具箱matlab源码程序 > signal/+fdesign/@abstractmultirate2/getmask.m

    function [F, A] = getmask(this, fcns, rcf, varargin)
%GETMASK   Get the mask.

%   Copyright 2005 The MathWorks, Inc.

rcf  = getratechangefactors(this);

% Get the mask from the contained FDESIGN.
[F, A] = getmask(this.CurrentFDesign, fcns, max(rcf),varargin{:});

% [EOF]