1 | initial version |
It looks like you have to put the matrix into a list representing a column vector. Then, you can use the r.matrix
command. For example:
m=matrix(3,4,[1,2,3,4,5,6,7,8,9,10,11,12])
r.matrix(m.transpose().list(),nrow=3)
gives the following matrix in R:
[,1] [,2] [,3] [,4]
[1,] 1 2 3 4
[2,] 5 6 7 8
[3,] 9 10 11 12