www.gusucode.com > mbcdata 工具箱 matlab 源码程序 > mbcdata/@calibrationdata/@axis/refresh.m

    function refresh(obj)
%REFRESH  Refresh axis.
%
%  REFRESH(OBJ) refreshes the axis OBJ.

%  Copyright 2004-2005 The MathWorks, Inc.


calibrationInterface = obj.CalibrationInterface;
if isempty(calibrationInterface)
    % No interface, ignore
elseif ishandle(calibrationInterface)
    obj = getAxis(obj.CalibrationInterface, obj.Identifier);
else
    error(message('mbc:calibrationdata:axis:StaleInterface'))
end