码迷,mamicode.com
首页 > 其他好文 > 详细

numpy unique()

时间:2015-05-05 12:39:36      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

unique()保留数组中不同的值,返回两个参数。


>>> a=np.random.randint(0,5,8) 
>>> a 
array([2, 3, 3, 0, 1, 4, 2, 4]) 


>>> np.unique(a) 
array([0, 1, 2, 3, 4]) 


>>> c,s=np.unique(b,return_index=True) 
>>> c 
array([0, 1, 2, 3, 4]) 
>>> s 
array([3, 4, 0, 1, 5])(元素出现的起始位置) 

numpy unique()

标签:

原文地址:http://blog.csdn.net/a2224998/article/details/45499881

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!