diff options
Diffstat (limited to 'tests/unit_tests/test_double_OpLogGt.sci')
-rw-r--r-- | tests/unit_tests/test_double_OpLogGt.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit_tests/test_double_OpLogGt.sci b/tests/unit_tests/test_double_OpLogGt.sci new file mode 100644 index 00000000..70a1ef39 --- /dev/null +++ b/tests/unit_tests/test_double_OpLogGt.sci @@ -0,0 +1,11 @@ +function test_double_OpLogGt() + a = 1; + c = [1 2 3] + + disp(a > a); // d0d0OpLogEqd0 + disp(a > c); // d0d2OpLogEqd2 + + disp(c > a); // d2d0OpLogEqd0 + disp(c > c); // d2d2OpLogEqd2 + +endfunction |