diff --git a/matlab/utilities/general/compare_vectors.m b/matlab/utilities/general/compare_vectors.m index 68f57c2d2..a0c56b336 100644 --- a/matlab/utilities/general/compare_vectors.m +++ b/matlab/utilities/general/compare_vectors.m @@ -80,8 +80,15 @@ end %$ t(1) = dyn_assert(compare_vectors(@lt, [1990 3], [1991 3]), 1); %$ t(2) = dyn_assert(compare_vectors(@lt, [1990 3], [1990 3]), 0); %$ t(3) = dyn_assert(compare_vectors(@le, [1990 3], [1990 3]), 1); -%$ t(4) = dyn_assert(compare_vectors(@ge, [1991 3], [1990 3]), 1); -%$ t(5) = dyn_assert(compare_vectors(@ge, [1991 3], [1991 3]), 1); -%$ t(4) = dyn_assert(compare_vectors(@gt, [1991 3], [1990 3]), 1); +%$ t(4) = dyn_assert(compare_vectors(@lt, [1990 3], [1990 4]), 1); +%$ t(5) = dyn_assert(compare_vectors(@le, [1990 3], [1990 4]), 1); +%$ t(6) = dyn_assert(compare_vectors(@gt, [1990 3], [1991 3]), 0); +%$ t(7) = dyn_assert(compare_vectors(@gt, [1990 3], [1990 3]), 0); +%$ t(8) = dyn_assert(compare_vectors(@ge, [1990 3], [1990 3]), 1); +%$ t(9) = dyn_assert(compare_vectors(@gt, [1990 3], [1990 4]), 0); +%$ t(10) = dyn_assert(compare_vectors(@ge, [1990 3], [1990 4]), 0); +%$ t(11) = dyn_assert(compare_vectors(@le, [1991 3], [1990 4]), 0); +%$ t(12) = dyn_assert(compare_vectors(@le, [1991 3], [1990 2]), 0); +%$ t(13) = dyn_assert(compare_vectors(@le, [1945 2], [1950, 1]),1); %$ T = all(t); %@eof:1 \ No newline at end of file