my_array = array(2:5,c(2,2))
this_array = array(14:17,c(2,2))
print('My_Array')
my_array
print('This_array')
this_array

print('combining arrays on row')
my_array_1 = rbind(my_array,this_array)
my_array_1
dim(my_array_1)

print('combining arrays on columns')
my_array_2 = cbind(my_array, this_array)
my_array_2
dim(my_array_2)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: