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

    function p = getLowerExpression(obj)
%GETLOWEREXPRESSSION Return the expression for the lower bound
%
%   OBJ = GETLOWEREXPRESSION(OBJ) returns the expression for the lower
%   bound constraint in OBJ.

%   Copyright 2006-2007 The MathWorks, Inc.

% Return the right hand side pointers of the lower bound constraint
if isnull(obj.LowerBound)
    p = mbcpointer(1);
else
    p = getrhsexpr(obj.LowerBound.info);
end