I have a numpy array arrayBig
10 5 27 30 34
2 34 23 2 3
2 3 43 12 23
2 24 34 2 34
And I have a numpy array arraySmall
1 0 0
0 1 1
1 1 0
What I want is a numpy array arrayNew
34 0 0
0 43 12
24 34 0
I know my arraySmall has the shape (3,3) and is located at index (1 1) in arrayBig. How can I get arrayNew with Numpy?