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

    function ssf = removeGuidFilter(ssf, guids)
%SWEEPSETFILTER/REMOVEGUIDFILTER removes guids from the list of removed records
%
%  SSF = REMOVEGUIDFILTER(SSF, GUID)
%  

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


% Add the new guids to filter out
ssf.filterGuid = ssf.filterGuid(~ismember(ssf.filterGuid, guids));
% Update the cache's without reevaluateing any filters
ssf = updateFilter(ssf, [], []);