diff options
Diffstat (limited to 'tests/general_tests/fmincon/fmincon_logical12.sce')
-rw-r--r-- | tests/general_tests/fmincon/fmincon_logical12.sce | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/general_tests/fmincon/fmincon_logical12.sce b/tests/general_tests/fmincon/fmincon_logical12.sce index 325cd2c..48715a1 100644 --- a/tests/general_tests/fmincon/fmincon_logical12.sce +++ b/tests/general_tests/fmincon/fmincon_logical12.sce @@ -1,14 +1,13 @@ - // Example with objective function and inequality constraints +// Example with objective function and inequality constraints function y=fun(x) - k=1 - y=0 - for i = 1:20 - y = y + exp(x(i)) - end + y=-sum(exp(x)) endfunction + x0 = [repmat(1,1,20)]; A=[-1,-5,-3 repmat(0,1,17); -0.5,-2.5 -1.5 repmat(0,1,17);]; b=[-100 -50]'; + lb = repmat(0,1,20); -k = 0 -[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,A,b,[],[],lb,[]) +ub = repmat(10,1,20); + +[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,A,b,[],[],lb,ub) |