# Create a matrix
thismatrix <- matrix(c(1,2,3,4,5,6), nrow = 3, ncol = 2)
# Print the matrix
thismatrix
[,1] [,2] [1,] 1 4 [2,] 2 5 [3,] 3 6