www.gusucode.com > mbctools 工具箱 matlab 源码程序 > mbctools/@xregbdryroot/getInputFactors.m

    function cif = getInputFactors(broot, varargin)
%GETINPUTFACTORS Get the input factors from a boundary root node
%
%  CIF = GETINPUTFACTORS(BROOT, STAGES)
%  CIF = GETINPUTFACTORS(BROOT, 0) response level input factors, i.e., all
%  CIF = GETINPUTFACTORS(BROOT, 1) local level input factors
%  CIF = GETINPUTFACTORS(BROOT, 2) global level input factors
%  CIF = GETINPUTFACTORS(BROOT) uses STAGES = 0
%
%  See also XREGBDRYROOT, XREGBDRYROOT/PFILTERFACTORSFORSTAGES,
%      CONINPUTFACTOR. 

%  Copyright 2005-2006 The MathWorks, Inc. and Ford Global Technologies, Inc.

cif = pFilterFactorsForStages( broot, broot.InputFactors, varargin{:} );