numeric
numeric copied to clipboard
Transpose of a vector gives empty vector(list)
numeric.transpose([1,2,3,4])
Results in
[ ]
Is the expected behaviour
transpose([1,2]) == [1,2]
or
transpose([1,2]) == [[1],[2]]?