import numpy as np def unique(ar): perm = ar.argsort() # 排序,perm 一次全排列aux = ar[perm] # aux 表示排序后的数组flag ...
確定! 回上一頁