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

    function LB = getLB(optimstore)
%GETLB Get the free variable lower bounds.
%  LB = GETLB(OPTIMSTORE) returns the free variable lower bounds used in
%  the optimization. LB is a (1-by-NFreeVar) vector where NFreeVar is the
%  number of free variables in the optimization.
%
%  See also: CGOPTIMSTORE/GETUB.

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


LB = getFreeVariableRanges(optimstore.OptimRunner);