码迷,mamicode.com
首页 > 编程语言 > 详细

python numpy中数组.min()

时间:2018-04-28 23:44:34      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:div   color   int   array   axis   .net   col   net   bsp   

https://blog.csdn.net/ssdut_209/article/details/50938413

 

>>> a=array([[1,5,3],[2,6,3]])
>>> a
array([[1, 5, 3],
       [2, 6, 3]])
>>> print(a.min())  #无参,所有中的最小值 
1
>>> print(a.min(0))  ## axis=0; 每列的最小值
[1 5 3]
>>> print(a.min(1))  ##axis=1;每行的最小值
[1 2]
>>> 

 

python numpy中数组.min()

标签:div   color   int   array   axis   .net   col   net   bsp   

原文地址:https://www.cnblogs.com/zb-ml/p/8969681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!