I have a few numpy arrays, lets say a, b, and c, and have created a mask to apply to all of them.
I am trying to mask them as such:
a = a[mask]
where mask is a bool array. It is worth noting that I have verified that
len(a) = len(b) = len(c) = len(mask)
And I am getting a rather cryptic sounding warning:
FutureWarning: in the future, boolean array-likes will be handled as a boolean array index
maskis even a thing with alen?masksomehow?