www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtradeoffgui/@toGVDataModel/hasErrorData.m

    function ret = hasErrorData(obj, Row)
%HASERRORDATA Return true if error data is contained in the data model
%
%  HASERRORDATA(OBJ, ROW) returns true if the data model has been populated
%  with upper and lower bounds of error data for the specified row.

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


ret = ~isempty(obj.LowerModelPEBound) && ...
    ~any(cellfun('isempty', obj.LowerModelPEBound(Row, ~obj.IsBlank(Row, :))));