www.gusucode.com > mbcexpr 工具箱 matlab 源码程序 > mbcexpr/+cgsimfill/@Feature/RemoveRows.m

    function RemoveRows(F,Rows2Remove)
%RemoveRows remove data from values for filling
%
% RemoveRows(F,Rows2Remove)

%  Copyright 2005-2008 The MathWorks, Inc.


if any(Rows2Remove)
    % remove variable values
    RemoveRows(F.EvalPoints,Rows2Remove);
    for i=1:length(F.Tables)
        T= F.Tables(i);
        % remove rows from Table info
        RemoveRows(T,Rows2Remove);
    end
end