diff options
Diffstat (limited to 'tests/general_tests/lsqnonlin/lsqnonlin_A1.sce')
-rw-r--r-- | tests/general_tests/lsqnonlin/lsqnonlin_A1.sce | 19 |
1 files changed, 19 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) + |