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

    function Tgt = getRealTargets(obj)
%GETREALTARGETS finds real target 
%
% Tgt = getRealTargets(obj)
%   This methods is used to determine the range for internal models

%  Copyright 2007 The MathWorks, Inc. 

n = length(obj);
Tgt = zeros(n,2);
for i=1:n
    Tgt(i,:) = obj(i).RealTarget;
end