Find the unique elements of an array. numpy.unique(ar, return_index=False, return_inverse=False) >>> np.unique([1, 1, 2, 2, 3, 3]) array([1, ...
確定! 回上一頁