www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtradeoffnode/istableexportable.m

    function out=istableexportable(obj)
%ISTABLEEXPORTABLE 
%
%  RET= ISTABLEEXPORTABLE(NODE) returns true if the node supports exporting
%  to a calibration format (ie via cgcaloutput).

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


if isempty(obj.Tables)
   out = false;
else
   out = true;
end