www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@xreglinear/fx.m

    function FX=fx(m)
%FX  FX matrix
%
%   f=FX(m) extracts the FX data from the model store

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




if ~isfield(m.Store,'Q')
   error(message('mbc:xreglinear:InvalidState3'));
end

FX=m.Store.X;