博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] numpy.nonzero
阅读量:5718 次
发布时间:2019-06-18

本文共 527 字,大约阅读时间需要 1 分钟。

numpy.nonzero(a)

Return the indices of the elements that are non-zero.

Returns a tuple of arrays, one for each dimension of a, containing the indices of the non-zero elements in that dimension. The values in aare always tested and returned in row-major, C-style order. The corresponding non-zero  values can be obtained with:

 

 
import numpy as npa = np.eye(3);print np.nonzero(a)#(array([0, 1, 2]), array([0, 1, 2]))

  

print np.transpose(np.nonzero(a))#[[0 0]# [1 1]# [2 2]]

  

转载于:https://www.cnblogs.com/KennyRom/p/6621770.html

你可能感兴趣的文章
Evaluate Reverse Polish Notation
查看>>
树形DP-HDU1561 The more, The Better
查看>>
最短路径—Dijkstra算法和Floyd算法
查看>>
JSON
查看>>
Ubuntu linux 安装使用
查看>>
jquery 几种类选择器方式
查看>>
HTML个人简历
查看>>
数组子数组求最大值1
查看>>
三角多项式不等式
查看>>
airflow docker
查看>>
数据查询
查看>>
HDU 5017 Ellipsoid 模拟退火
查看>>
Watch The Movie
查看>>
RHEL 安装Hyper-V后,光驱丢失(/dev下没有cdrom)的解决方法
查看>>
常与同好争高下:互联网创业的8条忠告
查看>>
ubuntu 中 eclipse 的菜单栏 显示问题
查看>>
12、13章 广播和多播 IGMP:Internet组管理协议
查看>>
RabbitMQ~消费者实时与消息服务器保持通话
查看>>
MVVM架构~knockoutjs系列之表单添加(验证)与列表操作源码开放
查看>>
MVC+LINQToSQL的Repository模式之(二)数据基类
查看>>