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

    function props = syncspecs(h,d)
%SYNCSPECS Properties to sync.
%
%   Inputs:
%       h - handle to this object
%		d - handle to container objects
%
%   Outputs:
%       props - cell array, with list of properties to sync from
%               and list of properties to sync to.

%   Author(s): R. Losada
%   Copyright 1988-2002 The MathWorks, Inc.

magUnits = get(d,'magUnits');
magUnitsOpts = set(d,'magUnits');

switch magUnits,
case magUnitsOpts{1}, % 'dB'
	props = {'Apass'};
case magUnitsOpts{2}, % 'Linear'
	props = {'Dpass'};
end