I would like to find values in an array that are at least an interval length apart. Lets say I have the following data set
0.1 0.21 0.26 0.3 0.36 0.4 0.52 0.76 0.91 1.2
and my interval is 0.25. I need a formula that extracts the each time the data exceeds the interval. The interval starts from the last value that exceeded the previous interval. So the desired output I would like is the following:
0.1 0.36 0.76 1.2
The difficulty is in the 'interval' that is not static. I've tried things with arrayformula and sequence functions but not getting the desired results. Anyone have any pointers for me?