• 技术文章 >Python技术 >Python基础教程

    Python中numpy.where()函数的使用

    小妮浅浅小妮浅浅2021-03-05 10:27:56原创4006

    python函数.png

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

    1、概念

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

    2、参数

    condition

    3、返回值

    返回out

    代码1:

    1

    2

    3

    4

    5

    6

    7

    <p style="line-height: 1.75em;"><span style="font-family: 微软雅黑, "Microsoft YaHei";"># Python program explaining 

         # where() function 

       

         import numpy as np

       

         np.where([[True, False], [True, True]],

             [[1, 2], [3, 4]], [[5, 6], [7, 8]])<br></span></p>

    输出:

    1

    2

    <p style="line-height: 1.75em;"><span style="font-family: 微软雅黑, "Microsoft YaHei";">array([[1, 6],

           [3, 4]])<br></span></p>

    代码2:

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    <p style="line-height: 1.75em;"><span style="font-family: 微软雅黑, "Microsoft YaHei";"># 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])<br></span></p>

    输出:

    1

    2

    3

    4

    5

    6

    7

    8

    <p style="line-height: 1.75em;"><span style="font-family: 微软雅黑, "Microsoft YaHei";">[[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])<br></span></p>

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

    专题推荐:numpywhere函数;python
    上一篇:Python中numpy多维数组的用法 下一篇:Python动态循环的使用

    相关文章推荐

    • Python之numpy中mask选取子集• Python基础:numpy中vstack和hstack函数• Python中如何用numpy解决梯度下降最小值• Python基础:numpy中的常见函数有哪些• Python中numpy求函数的导数实现方法• Python中numpy如何进行降序?• Python中用numpy进行图片处理• Python中numpy如何构建多维数组• Python中numpy多维数组的用法

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网