Difference between revisions of "QpDefine"

m (adding doc status category stub page)
Line 2: Line 2:
 
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
 
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
 
   
 
   
{{stub}}
+
[[QpDefine]] is used to define a quadratic optimization problem -- a problem containing a linear or quadratic objective, and linear or quadratic constraints.  It has been superceded by [[DefineOptimization]] in Analytica 4.3.
 +
 
 +
Please see that Analytica Optimizer manual for Analytica 4.2 for a description of [[QpDefine]].
 +
 
 +
== Notes ==
 +
 
 +
When filling in a quadratic matrix, there are, in theory, multiple ways to specify the coefficients.  For example, the quadratic expression:
 +
 
 +
x^2 + 4*x*y + 3*y^2
 +
 
 +
would be, in theory, represented identically using the lower-triangular Q matrix:
 +
 
 +
[ 1 0 ]
 +
[ 4 3 ]
 +
 
 +
its upper-trangular transpose, the symmetric Q-matrix:
 +
 
 +
[ 1 2 ]
 +
[ 2 3 ]
 +
 
 +
or any convex combination of these.  However, the "SOCP Barrier" engine only interprets the matrix correctly when it is symmetric.  It only looks at the upper-triangle, and assumes that the lower-triangle coefficients are the same.  In Analytica 4.2 and earlier, [[QpDefine]] does not convert a non-symmetric Q into its symmetric counterpart internally for you, so it is important that you provide a symmetric Q matrix, not a lower-triangular one.

Revision as of 06:42, 29 August 2010


QpDefine is used to define a quadratic optimization problem -- a problem containing a linear or quadratic objective, and linear or quadratic constraints. It has been superceded by DefineOptimization in Analytica 4.3.

Please see that Analytica Optimizer manual for Analytica 4.2 for a description of QpDefine.

Notes

When filling in a quadratic matrix, there are, in theory, multiple ways to specify the coefficients. For example, the quadratic expression:

x^2 + 4*x*y + 3*y^2

would be, in theory, represented identically using the lower-triangular Q matrix:

[ 1 0 ]
[ 4 3 ]

its upper-trangular transpose, the symmetric Q-matrix:

[ 1 2 ]
[ 2 3 ]

or any convex combination of these. However, the "SOCP Barrier" engine only interprets the matrix correctly when it is symmetric. It only looks at the upper-triangle, and assumes that the lower-triangle coefficients are the same. In Analytica 4.2 and earlier, QpDefine does not convert a non-symmetric Q into its symmetric counterpart internally for you, so it is important that you provide a symmetric Q matrix, not a lower-triangular one.

Comments


You are not allowed to post comments.