I'm trying to sort the rows of one array by the values of another. For example:
import numpy as np
arr1 = np.random.normal(1, 1, 80)
arr2 = np.random.normal(1,1, (80,100))
I want to sort arr1
in descending order, and to have the current relationship between arr1
and arr2
to be maintained (ie, after sorting both, the rows of arr1[0]
and arr2[0, :]
are the same).
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…