www.gusucode.com > mbcexpr 工具箱 matlab 源码程序 > mbcexpr/@cgmodexpr/evalCIAtInputs.m

    function y = evalCIAtInputs(obj, inputs)
%EVALCIATINPUTS Provide confidence interval at given input values.
%
%   Y = EVALCIATINPUTS(OBJ, INPUTS) returns the confidence interval for the
%   values returned by the EVALATINPUTS method.  The default definition for
%   this value is 3*sqrt(pev).

%   Copyright 2006 The MathWorks, Inc.


switch obj.EvalMode
    case 1
        y = 3*sqrt(pevevalAtInputs(obj, inputs));
    case 2
        y = 0;
    case 3
        y = 0;
end