码迷,mamicode.com
首页 > 编程语言 > 详细

python常用包和模块-更新

时间:2016-03-24 20:01:42      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

random.sample(sequence, k),从指定序列中随机获取指定长度的片断。sample函数不会修改原有序列

numpy.nonzero() Return the indices of the elements that are non-zero.

>>> a = np.array([[1,2,3],[4,5,6],[7,8,9]])
>>> a > 3
array([[False, False, False],
       [ True,  True,  True],
       [ True,  True,  True]], dtype=bool)
>>> np.nonzero(a > 3)
(array([1, 1, 1, 2, 2, 2]), array([0, 1, 2, 0, 1, 2]))

 

python常用包和模块-更新

标签:

原文地址:http://www.cnblogs.com/yuchenkit/p/5316860.html

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