summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical17.sce
diff options
context:
space:
mode:
authorharpreet2016-04-16 12:12:15 +0530
committerharpreet2016-04-16 12:12:15 +0530
commit10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3 (patch)
tree087af3ca1853d01afef58684b09b537597317023 /tests/general_tests/fmincon/fmincon_logical17.sce
parent8484c85784b84cc3a9257f8d8065b3a8a7800628 (diff)
downloadFOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.tar.gz
FOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.tar.bz2
FOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.zip
fmincon examples
Diffstat (limited to 'tests/general_tests/fmincon/fmincon_logical17.sce')
-rw-r--r--tests/general_tests/fmincon/fmincon_logical17.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/general_tests/fmincon/fmincon_logical17.sce b/tests/general_tests/fmincon/fmincon_logical17.sce
new file mode 100644
index 0000000..520b095
--- /dev/null
+++ b/tests/general_tests/fmincon/fmincon_logical17.sce
@@ -0,0 +1,13 @@
+// Example with log objective function, inequality constraints
+
+function y=fun(x)
+ y = sum(log(x))
+endfunction
+
+x0 = repmat(1,1,20);
+lb = repmat(0,1,20);
+
+A=[-1,-5,-3 repmat(0,1,17); -0.5,-2.5 -1.5 repmat(0,1,17);];
+b=[-100 -50]';
+
+[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,A,b,[],[],lb,[])