Extend scope of transpose

Includes an arg to allow transposing in respecto to the secondary "diagonal"
This commit is contained in:
RonaldoCMP
2020-08-11 14:32:25 +01:00
parent 9a5724aebd
commit 5ebf1c80b9
2 changed files with 24 additions and 3 deletions

View File

@@ -480,6 +480,7 @@ test_array_dim();
module test_transpose() {
assert(transpose([[1,2,3],[4,5,6],[7,8,9]]) == [[1,4,7],[2,5,8],[3,6,9]]);
assert(transpose([[1,2,3],[4,5,6]]) == [[1,4],[2,5],[3,6]]);
assert(transpose([[1,2,3],[4,5,6]], reverse=true) == [[6,3],[5,2],[4,1]]);
assert(transpose([3,4,5]) == [3,4,5]);
}
test_transpose();