summaryrefslogtreecommitdiff
path: root/tests/general_tests/lsqnonneg/lsqnonneg_logical.sce
diff options
context:
space:
mode:
authorHarpreet2015-12-29 00:38:48 +0530
committerHarpreet2015-12-29 00:38:48 +0530
commiteb9ca1191c94059cd7adcf69805906c809fe9712 (patch)
treef98e728341812b8a0eb46aa4159b062a22225f05 /tests/general_tests/lsqnonneg/lsqnonneg_logical.sce
parent0eee95dfb1edec6ce52ec3065a3adb1bf169c9f9 (diff)
downloadFOSSEE-Optimization-toolbox-eb9ca1191c94059cd7adcf69805906c809fe9712.tar.gz
FOSSEE-Optimization-toolbox-eb9ca1191c94059cd7adcf69805906c809fe9712.tar.bz2
FOSSEE-Optimization-toolbox-eb9ca1191c94059cd7adcf69805906c809fe9712.zip
Bugs fixed 4
Diffstat (limited to 'tests/general_tests/lsqnonneg/lsqnonneg_logical.sce')
-rw-r--r--tests/general_tests/lsqnonneg/lsqnonneg_logical.sce40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/general_tests/lsqnonneg/lsqnonneg_logical.sce b/tests/general_tests/lsqnonneg/lsqnonneg_logical.sce
new file mode 100644
index 0000000..15106f0
--- /dev/null
+++ b/tests/general_tests/lsqnonneg/lsqnonneg_logical.sce
@@ -0,0 +1,40 @@
+// An example with C and d as input
+C = [
+ 0.0372 0.2869
+ 0.6861 0.7071
+ 0.6233 0.6245
+ 0.6344 0.6170];
+d = [
+ 0.8587
+ 0.1781
+ 0.0747
+ 0.8405];
+
+//Output
+//Optimal Solution Found.
+// lambda =
+//
+// lower: [0.1506118,1.441D-11]
+// upper: [0,0]
+// output =
+//
+// Iterations: 5
+// exitflag =
+//
+// 0
+// residual =
+//
+// 0.6598971
+// - 0.3118739
+// - 0.3580375
+// 0.4129595
+// resnorm =
+//
+// 0.8314560
+// xopt =
+//
+// 0.
+// 0.6929344
+
+[xopt,resnorm,residual,exitflag,output,lambda] = lsqnonneg(C,d)
+