I have two vectors x and y ( shown here ).
I want to have a greater score for the vector which has a first greater value at any index/level starting from a to d. As it can be seen that vector x has higher value at index b hence its overall score should be higher than vector y.
Just a sum of these two vectors does not represent this behavior. Because score of a sum of these vectors gives a greater score to vector y than x. Is there any other mathematical way that I can use to score these vectors?
note:
(i) The highest value at any level is 1.0 and minimum is 0.0
(ii) To score a vector all its values have to be considered.