summaryrefslogtreecommitdiff
path: root/tests/general_tests/linprog/linprog_A1.sce
blob: bb3a00afedd974fcc439be9c27331f23385c6b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Check for elements in A
c=[-1,-1/3]'
A=[1,1;1,1/4;1,-1;-1/4,-1;-1,-1;-1,1]
b=[2,1,2,1,-1,2]
Aeq=[1,1/4]
beq=[1/2]

//Error
//linprog: The number of columns in A must be the same as the number of elements of c
//at line     113 of function matrix_linprog called by :  
//at line     169 of function linprog called by :  
//[xopt,fopt,exitflag,output,lambda]=linprog(c, b, b, Aeq, beq)
//at line      30 of exec file called by :    
//exec linprog_A1.sce

[xopt,fopt,exitflag,output,lambda]=linprog(c, b, b, Aeq, beq)