where python报错_Python中numpy.where()函数的使用

Python中的函数数不胜数,今天小编就numpy.where()函数的使用为大家带来讲解。

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

参数:condition : When True, yieldx, otherwise yield y.x,y:Values from which to choose. x, y and

condition need to be broadcastable to some shape.

返回:out : [ndarray or tuple of ndarrays] If both x and y are specified, the output array contains elements of x where condition is True, and elements from y elsewhere.

If only condition is given, return the tuple condition.nonzero(), the indices where condition is True.

代码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学习推荐:JQ教程网Python大全。

您可能感兴趣的文章:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值