summaryrefslogtreecommitdiff
path: root/qpipoptmat/qpipoptmat_logical1.sce
blob: 39957b5bc5b67a649622d845fc8f2466acd991ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Check for the Q to be a symmetric matrix

f=[2 -35 -47]'; 
H =[5   -2   -1; -2   4   3; -1   3   5];
[xopt,fopt,exitflag,output,lambda]=qpipoptmat(H,f)

//Output
// lambda  =
// 
//   lower: [0,0,0]
//   upper: [0,0,0]
//   constraint: [0x0 constant]
// output  =
// 
//   Iterations: 1
// exitflag  =
// 
//  0  
// fopt  =
// 
//  - 249.  
// xopt  =
// 
//    3.  
//    5.  
//    7.