[Solved] how to combine desired columns from different matrix in R November 9, 2022 by Kirat You could use cbind function: C <- cbind(A, B[,2]) 1 solved how to combine desired columns from different matrix in R