summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical13.sce
diff options
context:
space:
mode:
authorharpreet2016-04-06 10:46:05 +0530
committerharpreet2016-04-06 10:46:05 +0530
commit8484c85784b84cc3a9257f8d8065b3a8a7800628 (patch)
treec508e843855e75529056e06992b7ef43939f52b9 /tests/general_tests/fmincon/fmincon_logical13.sce
parent7cf9300c2eb4773afa9823cf4a179d43f70001aa (diff)
downloadsymphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.gz
symphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.bz2
symphony-8484c85784b84cc3a9257f8d8065b3a8a7800628.zip
qpiopt updated
Diffstat (limited to 'tests/general_tests/fmincon/fmincon_logical13.sce')
-rw-r--r--tests/general_tests/fmincon/fmincon_logical13.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/general_tests/fmincon/fmincon_logical13.sce b/tests/general_tests/fmincon/fmincon_logical13.sce
new file mode 100644
index 0000000..3c6b87d
--- /dev/null
+++ b/tests/general_tests/fmincon/fmincon_logical13.sce
@@ -0,0 +1,19 @@
+// Example with objective function and inequality constraints
+
+function y=fun(x)
+ y=0
+ for i = 1:20
+ y = y + exp(x(i))
+ end
+endfunction
+
+x0 = repmat(1,1,20);
+lb = repmat(0,1,20);
+
+//Nonlinear constraints
+function [c,ceq]=nlc(x)
+c = [- 0.5*exp(x(1)) - 2.5*exp(x(2)) - 1.5*exp(x(3)) + 50];
+ceq = [];
+endfunction
+
+[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,[],[],[],[],lb,[],nlc)