I have a matrix (32X48).
How can I convert the matrix into a single dimensional array?
try c()
c()
x = matrix(1:9, ncol = 3) x [,1] [,2] [,3] [1,] 1 4 7 [2,] 2 5 8 [3,] 3 6 9 c(x) [1] 1 2 3 4 5 6 7 8 9