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

    function specs = whichspecs(h)
%WHICHSPECS Determine which specs are required for this class.

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

% Call super's method
specs = mf_whichspecs(h);

% Prop name, data type, default value, listener callback
specs(end+1) = cell2struct({'Astop','udouble',80,[],'magspec'},specfields(h),2);

% [EOF]