I have a numpy array like:
[[ 90 -51 -90]
[ 67 47 -43]
[ -27 27 100]
[ 55 -1 -50]
[ -95 -55 69]]
Is there a way I can, in numpy, remove rows with opposite elements, like [ 90 -51 -90] or [ -27 27 100], without using a For loop?
Thanks !