diff options
author | harpreet | 2016-04-06 10:46:05 +0530 |
---|---|---|
committer | harpreet | 2016-04-06 10:46:05 +0530 |
commit | 8484c85784b84cc3a9257f8d8065b3a8a7800628 (patch) | |
tree | c508e843855e75529056e06992b7ef43939f52b9 /tests/general_tests/fmincon/fmincon_logical12.sce | |
parent | 7cf9300c2eb4773afa9823cf4a179d43f70001aa (diff) | |
download | symphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.gz symphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.bz2 symphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.zip |
qpiopt updated
Diffstat (limited to 'tests/general_tests/fmincon/fmincon_logical12.sce')
-rw-r--r-- | tests/general_tests/fmincon/fmincon_logical12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
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,[]) |