www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@mbcmodel/@localresponse/RestoreData.m

    function L = RestoreData(L,varargin)
%RESTOREDATA Restore data previously removed as outliers
%
%   RESTOREDATA( LOCALRESPONSE, OutlierIndices ) restores all removed data
%   specified in OutlierIndices
%   RESTOREDATA( LOCALRESPONSE ) restores all removed data
%
%   See also mbcmodel.localresponse.OutlierIndices, mbcmodel.localresponse.RemoveOutliers

%   Copyright 2004-2007 The MathWorks, Inc.

try
    RestoreData(L.Object, varargin{:});
catch
    error(message('mbc:mbcmodel:localresponse:UnknownError'));
end