matrix
#converting vector to matrix x<-seq(1,10,1) x # [1] 1 2 3 4 5 6 7 8 9 10 dim(x) #NULL dim(x)<-c(2,5) x # [,1] [,2] [,3] [,4] [,5] # [1,] 1 3 5 7 9 # [2,] 2 4 6 8 10 dim(x)<-NULL x # [1] 1 2 3 4 5 6 7 8 9 10 y<-matrix(x,2,5) y # [,1] [,2] [,3] [,4] [,5] # [1,] 1 3 5 7 9 # [2,] 2 4 6 8 10 y<-matrix(x,2,5,byrow = T) y # [,1] [,2] [,3] [,4] [,5] # [1,] 1 2 3 4 5 # [2,] 6 7 8 9 10 z<-rbind(y,c(11,12...