创新互联Python教程:Python中numpy.where()函数的使用

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

1、概念

numpy.where(condition [,x,y])函数返回满足给定条件的输入数组中元素的索引。

2、参数

condition

3、返回值

返回out

代码1:

# Python program explaining       # where() function         import numpy as np       np.where([[True, False], [True, True]],         [[1, 2], [3, 4]], [[5, 6], [7, 8]])

输出:

array([[1, 6],       [3, 4]])

代码2:

# Python program explaining       # where() function         import numpy as np       # a is an array of integers.     a = np.array([[1, 2, 3], [4, 5, 6]])       print(a)       print ('Indices of elements <4')       b = np.where(a<4)     print(b)       print("Elements which are <4")     print(a[b])

输出:

[[1 2 3] [4 5 6]]Indices of elements <4 (array([0, 0, 0], dtype=int64), array([0, 1, 2], dtype=int64)) Elements which are <4 array([1, 2, 3])

以上就是Python中numpy.where()函数的使用方法。

当前文章:创新互联Python教程:Python中numpy.where()函数的使用
链接地址:http://www.csdahua.cn/qtweb/news24/383824.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网