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/lsqnonlin | |
parent | 7cf9300c2eb4773afa9823cf4a179d43f70001aa (diff) | |
download | FOSSEE-Optimization-toolbox-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.gz FOSSEE-Optimization-toolbox-8484c85784b84cc3a9257f8d8065b3a8a7800628.tar.bz2 FOSSEE-Optimization-toolbox-8484c85784b84cc3a9257f8d8065b3a8a7800628.zip |
qpiopt updated
Diffstat (limited to 'tests/general_tests/lsqnonlin')
-rw-r--r-- | tests/general_tests/lsqnonlin/lsqnonlin_A1.sce | 19 | ||||
-rw-r--r-- | tests/general_tests/lsqnonlin/lsqnonlin_logical1.sce | 7 |
2 files changed, 26 insertions, 0 deletions
diff --git a/tests/general_tests/lsqnonlin/lsqnonlin_A1.sce b/tests/general_tests/lsqnonlin/lsqnonlin_A1.sce new file mode 100644 index 0000000..1c2128b --- /dev/null +++ b/tests/general_tests/lsqnonlin/lsqnonlin_A1.sce @@ -0,0 +1,19 @@ +// Check for elements in A +C = [2 0; + -1 1; + 0 2] +d = [1 + 0 + -1]; +A = [10 -2 0; + -2 10 0]; +b = [4 + -4]; + +//Error +//lsqlin: The number of columns in A must be the same as the number of columns in C +//at line 213 of function lsqlin called by : +//[xopt,resnorm,residual,exitflag,output,lambda] = lsqlin(C,d,A,b) + +[xopt,resnorm,residual,exitflag,output,lambda] = lsqlin(C,d,A,b) + diff --git a/tests/general_tests/lsqnonlin/lsqnonlin_logical1.sce b/tests/general_tests/lsqnonlin/lsqnonlin_logical1.sce new file mode 100644 index 0000000..aef546f --- /dev/null +++ b/tests/general_tests/lsqnonlin/lsqnonlin_logical1.sce @@ -0,0 +1,7 @@ +function retF = testmyfun(x) + km = [1:10]'; + retF = 2 + 2*km-exp(km*x(1))-exp(km*x(2)); +endfunction + +x0 = [0.3 0.4]' +[x,resnorm] = lsqnonlin(testmyfun,x0) |