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

    function [removedRows,guidList] = getRemovedRows(ssf,indexSS)
%getRemovedRows indices to removed rows in sweepsetfilter
%   removedRows = getRemovedRows(ssf,indexSS)

%  Copyright 2015 The MathWorks, Inc. and Ford Global Technologies, Inc.

if nargin < 2
    indexSS = sweepset(ssf.pSweepset.info);
end
% Which guids are we dealing with
guidList = getGuids(indexSS);
% Which rows of indexSS have been removed
removedRows = sort(getIndices(guidList, ssf.filterGuid));
% Remove any zeros as not interesting
removedRows(removedRows == 0) = [];