I have 3-D masked array of dtype=uint8, and I want to do something like arr.max(axis=-1), but instead of always picking the max, i want to either (1) find first (or last) unmased element, (2) pick random arbitrary unmasked element or (3) pick median or mode along axis, like numpy.ma.median or scipy.stats.mstats.mode
The approach (3) is what I would like in ideal world, but it is extremely slow. i then tried finding max, which runs quick. but i dont want always use max value.