I have a bool 2D-array A with the numbers of True being the dimension of bool 2D-array B.
A = np.array([[False, True, True, False, True],[False, False, False, False, False],[False, True, True, False, True]])
B = np.array([[True, False, True],[True, True, True]])
A =[[False, True, True, False, True],
[False, False, False, False, False],
[False, True, True, False, True]]
B =[[True, False, True],
[True, False, True]]
I want to "overlay" B on the "True"-Array of A, so that I'd get
C =
[[False, **True**, **False**, False, **True**],
[False, False, False, False, False],
[False, **True**, **False**, False, **True**]]
My ultimate goal is to manipulate an array
arr = [[1, 2, 3, 4, 5], [6,7,8,9,10], [11, 12, 13, 14, 15]]
with something like
arr[A] = arr[A] + B*2
to get
arr = [[1, 4, 3, 4, 7], [6,7,8,9,10], [11, 14, 13, 14, 17]]
Thanks in advance.
The solution I came up with was (works only if B is quadratic):