numpy的花式操作
Posted yutingmoran
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy的花式操作相关的知识,希望对你有一定的参考价值。
1. np.where & np.in1d
满足条件(condition),输出x,不满足输出y。 np.where(condition, x, y) # ar1中的元素是否出现在arr2,返回一个bool矩阵 np.in1d(ar1, ar2, assume_unique=False, invert=False) np.where(np.in1d(x,y),x,y)
以上是关于numpy的花式操作的主要内容,如果未能解决你的问题,请参考以下文章