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

    function [obj, ss] = updateExcludedData(obj, ss)
%UPDATEEXCLUDEDDATA update excluded in testplansweepsetfilter
%
%  OUT = UPDATEEXCLUDEDDATA(IN)
%  

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


% No sweepset in so we need to get the data in
if nargin < 2
    ss = sweepset(sweepsetfilter(obj));
end

% Apply the sweep reorder change
ss = ApplyObject(obj, ss);

% Now ensure that everyone knows the tssf has changed - if we are
% an tssf this will update the cache, else it is up to derived classes to
% ensure that they make their changes and call the pUpdateSweepsetCache
% method
[obj, ss] = pTestplanSweepsetfilterChanged(obj, ss);