Lets say I make the following arrays:
>>> a = zeros((2,2,2))
>>> b = ones((2,2))
How can I insert b into the middle of a? So my resulting array will look like
array([[[ 0., 0.],
[ 0., 0.]],
[[ 1., 1.],
[ 1., 1.]],
[[ 0., 0.],
[ 0., 0.]]])