I want to build a ndarray taget
from src
ndarray according to some coordinates. Here is an example
src = np.arange(12).reshape(3,4)
coordinates = [[[0,0],[0,1],[0,3]],
[[2,1],[1,1],[0,1]]]
target = src.SOME_API(coordinates)
# expect target as
# [[0,1,3],
# [9,5,1]]
How can I do this?