Given a 4 2d array as below
import numpy as np
t1=np.array([[0,0,1],[0,0,1],[1,1,0]])
t2=np.array([[0,1,0],[1,0,1],[0,1,0]])
t3=np.array([[0,0,1],[0,0,0],[1,0,0]])
t4=np.array([[0,1,1],[1,0,1],[1,1,0]])
May I know how to combine and reshape it to get the output as below
[[[0. 0. 0. 0.]
[0. 1. 0. 1.]
[1. 0. 1. 1.]]
[[0. 1. 0. 1.]
[0. 0. 0. 0.]
[1. 1. 0. 1.]]
[[1. 0. 1. 1.]
[1. 1. 0. 1.]
[0. 0. 0. 0.]]]