summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_double_OpLogLt.sci
blob: ec06fcc2c9dbb3148f601986f41ce855d5f80ade (plain)
1
2
3
4
5
6
7
8
9
10
function test_double_OpLogLt()
  a = 1;
  c = [1 2 3]
  
  disp(a < a); // d0d0OpLogEqd0
  disp(a < c); // d0d2OpLogEqd2
  
  disp(c < a); // d2d0OpLogEqd0
  disp(c < c); // d2d2OpLogEqd2
endfunction