diff options
Diffstat (limited to 'tests/general_tests/intfminunc/intfminuc_logical3.sce')
-rw-r--r-- | tests/general_tests/intfminunc/intfminuc_logical3.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/general_tests/intfminunc/intfminuc_logical3.sce b/tests/general_tests/intfminunc/intfminuc_logical3.sce new file mode 100644 index 0000000..7ec58be --- /dev/null +++ b/tests/general_tests/intfminunc/intfminuc_logical3.sce @@ -0,0 +1,28 @@ +// An Test for infeasible problem +function y = fun(x) + y = (x(1)-x(2))^2 + x(1); +endfunction +x0 = [1,2]; +options=list("maxiter", [1000], "cputime", [1.5]) +intcon = [1] + + +// InFeasible Solution. +// hessian = + +// [] +// gradient = + +// [] +// exitflag = + +// 1 +// fopt = + +// 0. +// xopt = + +// [] + + +[xopt,fopt,exitflag,gradient,hessian] = intfminunc (fun, x0,intcon, options) |