I have a number of arrays of same length:
a = [3,7,5,2,7]
b = [3,4,1,6,8]
c = [2,3,7,8,3]
d = [1,3,5,6,4]
e = [2,6,5,1,7]
My condition is x > 2. What I need is a final array checking if the condition applies for every position of all arrays.
The result would be:
[False, True, False, False, True]
Or even better:
[0, 1, 0, 0, 1]
Sorry if this is simple, I searched a long time but only found related topics but none exactly answering this.