My data looks like this:
all = [[-2,-1,0],[-1,-0.5,3],[-1,0.2,3],[0.2,1,3],[0.5,1,4]]
What I need to do is to select the first array which value in position [0] is bigger than zero and return me in this specific array the value of the element in position 1. I am a bit stuck, any idea? In my case it will be the array [0.2,1,3] , and in this array it should return me 1.