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

    function NF = fixxexpr(NF)
%FIXXEXPR Fix the Xexpr field
%
%  NF = FIXXEXPR(NF) makes sure that the input of the lookup table is a
%  pointer.  It may be an object if the lookup table has been loaded from
%  an older file.

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


if isa(NF.Xexpr, 'cgnormaliser')
    NF.Xexpr = xregpointer(NF.Xexpr);
end