Models Unconstrained Optimization: uc prob and uhs prob: Difference between revisions

From TomWiki
Jump to navigationJump to search
(Created page with "{{Part Of Manual|title=TOMLAB Models|link=TOMLAB Models}} The TOMLAB bundle testprob provides two sets of test problems for unconstrained optimization problems (with s...")
 
No edit summary
 
Line 17: Line 17:
</math>
</math>


where <math>x, x_L, x_U \in \MATHSET{R}^n</math> and <math>f(x) \in \MATHSET{R}</math>.
where <math>x, x_L, x_U \in \mathbb{R}^n</math> and <math>f(x) \in \mathbb{R}</math>.


==uc_prob==
==uc_prob==

Latest revision as of 13:08, 8 December 2011

Notice.png

This page is part of TOMLAB Models. See TOMLAB Models.

The TOMLAB bundle testprob provides two sets of test problems for unconstrained optimization problems (with simple bounds): uc_prob, and uhs_prob.

An example of a unconstrained optimization problem (with simple bounds)

The basic structure of a unconstrained optimization problems (with simple bounds) is the following


where and .

uc_prob

In glo1_prob there are 17 unconstrained optimization problems (with simple bounds) with up to three variables. In order to define the problem n and solve it execute the following in Matlab:

Prob	= probInit('uc_prob',n); 
Result  = tomRun('',Prob);

uhs_prob

In glo2_prob there are 25 unconstrained optimization problems (with simple bounds) with up to 10 variables. In order to define the problem n and solve it execute the following in Matlab:

Prob	= probInit('uhs_prob',n); 
Result  = tomRun('',Prob);