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

    function ind= OutlierIndices(R)
%OUTLIERINDICES Indices of input data marked as outliers.
%
%   IND = OUTLIERINDICES( LOCALRESPONSE );
%
% See also mbcmodel.localresponse.RemoveOutliers,
% mbcmodel.localresponse.RestoreData

%   Copyright 2004-2006 The MathWorks, Inc.

[X,Y,DataOK]= FitData(R.Object,':');
ind= find(~DataOK);