diff options
Diffstat (limited to 'tests/general_tests/qpipoptmat/qpipoptmat_x01.sce')
-rw-r--r-- | tests/general_tests/qpipoptmat/qpipoptmat_x01.sce | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/tests/general_tests/qpipoptmat/qpipoptmat_x01.sce b/tests/general_tests/qpipoptmat/qpipoptmat_x01.sce index 71a1c6c..f32dcdd 100644 --- a/tests/general_tests/qpipoptmat/qpipoptmat_x01.sce +++ b/tests/general_tests/qpipoptmat/qpipoptmat_x01.sce @@ -16,6 +16,32 @@ f=[1; 2; 3; 4; 5; 6]; H=eye(6,6); x0 = repmat(0,5,1); // Warning -//WARNING: qpipopt: Ignoring initial guess of variables as it is not equal to the number of variables +//WARNING: qpipoptmat: Ignoring initial guess of variables as it is not equal to the number of variables -[xopt,fopt,exitflag,output,lambda]=qpipoptmat(H,f,A,b,Aeq,beq,lb,ub,x0,param); +//Optimal Solution Found. +// lambda = +// +// lower: [9.982D-15,1.000D-15,7.345D-11,1.005D-14,9.994D-15,1.003D-14] +// upper: [1.000D-15,9.966D-14,7.481D-12,9.525D-14,1.006D-13,9.969D-15] +// eqlin: [-1.5564027,-0.1698164,-0.7054782] +// ineqlin: [0.3091368,1.197D-12] +// output = +// +// Iterations: 13 +// ConstrViolation: 9.968D-09 +// exitflag = +// +// 0 +// fopt = +// +// - 14.843248 +// xopt = +// +// 1.7975426 +// - 0.3381487 +// 0.1633880 +// - 4.9884023 +// 0.6054943 +// - 3.1155623 + +[xopt,fopt,exitflag,output,lambda]=qpipoptmat(H,f,A,b,Aeq,beq,lb,ub,x0,param) |