Convert vector of vector to matrix

Use the stack function.

stack([[1,0,1],[0,0,1]], dims=1) == [ 1 0 1 ; 0 0 1 ]

Comments