Data
a = np.array([[0.5,1,50],[0.5,1,30]])
b = np.array([[0.40,0.60],[0.75,2.0],[40,70]])
Expected results:
TRUE
FALSE
If I only had few rows, a stupid way to do it would be:
if b[0][0] <= a[0][0] <= b[0][1] and b[1][0] <= a[0][1] <= b[1][1] and b[2][0] <= a[0][2] <= b[2][1]:
print("its b!!")