Fix bug. Add test for subindex.

This commit is contained in:
Adrian Mariano
2020-08-02 10:38:11 -04:00
parent 37ca6efebb
commit 06b69475cb
2 changed files with 2 additions and 1 deletions

View File

@@ -358,6 +358,7 @@ test_add_scalar();
module test_subindex() {
v = [[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]];
assert(subindex(v,2) == [3, 7, 11, 15]);
assert(subindex(v,[2]) == [[3], [7], [11], [15]]);
assert(subindex(v,[2,1]) == [[3, 2], [7, 6], [11, 10], [15, 14]]);
assert(subindex(v,[1:3]) == [[2, 3, 4], [6, 7, 8], [10, 11, 12], [14, 15, 16]]);
}