www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@xregarx/DefaultOutliers.m

    function out = DefaultOutliers( m )
%DEFAULTOUTLIERS  Get the default outlier setup for this model
%
%  SETTINGS = DEFAULTOUTLIERS(MDL) returns a 4 or 5-element vecotr
%  containing the default settings for the outlier detection for this
%  model.
%
%  SETTINGS(1) Index into scatter plot (diagnosticStats)
%  SETTINGS(2) Use abs value (0/1)
%  SETTINGS(3) Relational operator: 1=lt, 2=gt, 3=le, 4=ge, 5=eq, 6=ne
%  SETTINGS(4) Limit (bound when no distribution, % otherwise)
%  SETTINGS(5) Distribution 1=none, 2=t, 3= norm (optional)

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


out = [1, 1, 1, -1, 1];