www.gusucode.com > mbcdata 工具箱 matlab 源码程序 > mbcdata/@cgrangeconstraint/getInputs.m

    function pInp = getInputs(obj)
%GETINPUTS Get the list of input variables
%
%  PINP = GETINPUTS(OBJ) returns a (1-by-N) pointer vector that contains
%  pointers to CAGE variable expressions.  These variables are all of the
%  ones that affect the output value of the item when it is evaluated. 

%   Copyright 2006 The MathWorks, Inc.

pInp = unique([obj.LowerBound.getinports, obj.UpperBound.getinports]);