From 8484c85784b84cc3a9257f8d8065b3a8a7800628 Mon Sep 17 00:00:00 2001 From: harpreet Date: Wed, 6 Apr 2016 10:46:05 +0530 Subject: qpiopt updated --- tests/general_tests/fmincon/fmincon_logical12.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/general_tests/fmincon/fmincon_logical12.sce (limited to 'tests/general_tests/fmincon/fmincon_logical12.sce') diff --git a/tests/general_tests/fmincon/fmincon_logical12.sce b/tests/general_tests/fmincon/fmincon_logical12.sce new file mode 100644 index 0000000..325cd2c --- /dev/null +++ b/tests/general_tests/fmincon/fmincon_logical12.sce @@ -0,0 +1,14 @@ + // 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 +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,[]) -- cgit