www.gusucode.com > mbctools 工具箱 matlab 源码程序 > mbctools/@sweepsetfilter/private/allowsProperties.m

    function [properties, flags] = allowsProperties
%ALLOWSPROPERTIES All the properties for the SSF "allows" functions
%
%  [PROPERTIES, FLAGS] = ALLOWSPROPERTIES returns two cell arrays of
%  strings.  PROPERTIES contains a set of property names and FLAGS contains
%  the corresponding field names in the structure that is returned from
%  GETFLAGS.
%
%  See also SWEEPSETFILTER, 
%           SWEEPSETFILTER/GETALLOWS,
%           SWEEPSETFILTER/SETALLOWS, 
%           SWEEPSETFILTER/PRIVATE/GETFLAGS. 

%  Copyright 2000-2005 The MathWorks, Inc. and Ford Global Technologies, Inc.


properties = {'modifydata', 'variables', 'filters', 'definetests', ...
        'sweepvariables', 'testfilters', 'reorder', 'derived', 'resampling'};

flags = {'APPLY_DATA', 'APPLY_VARS', 'APPLY_FILT', 'APPLY_TEST', ...
        'APPLY_SVAR', 'APPLY_SFILT', 'APPLY_REOR', 'APPLY_DERIVED', 'APPLY_RESAMP'};