summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical4.sce
diff options
context:
space:
mode:
Diffstat (limited to 'tests/general_tests/fmincon/fmincon_logical4.sce')
-rw-r--r--tests/general_tests/fmincon/fmincon_logical4.sce2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/general_tests/fmincon/fmincon_logical4.sce b/tests/general_tests/fmincon/fmincon_logical4.sce
index 31221c8..09b2b36 100644
--- a/tests/general_tests/fmincon/fmincon_logical4.sce
+++ b/tests/general_tests/fmincon/fmincon_logical4.sce
@@ -13,7 +13,7 @@ lb = [0 0]
ub = [2 1.5]
function [c,ceq]=nlc(x)
-c = [x(1)^2 - x(2)^2 + 0.5 , x(1)^2 + x(2)^2 - 2.5];
+c = [x(1)^2 - x(2)^2 + 0.5 ; x(1)^2 + x(2)^2 - 2.5];
ceq = [];
endfunction