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

numpy 数组的axis

时间:2017-01-25 12:41:24      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:element   axis   理解   max   row   mini   stream   res   minimum   

numpy中的axis怎么理解:数组的维数,比如4*5数组,行为axis=1,列为axis=0

eg:

a = np.arange(20).reshape(4,5)
print "a:"
print a

print "maximum element in each row of a: " + str(a.max(axis=1))
print "minimum element in each column of a: " + str(a.min(axis=0))

 

a:
[[ 0 1 2 3 4] [ 5 6 7 8 9] [10 11 12 13 14] [15 16 17 18 19]]
maximum element in each row of a: [ 4 9 14 19]
minimum element in each column of a: [0 1 2 3 4]

numpy 数组的axis

标签:element   axis   理解   max   row   mini   stream   res   minimum   

原文地址:http://www.cnblogs.com/amanon/p/6349251.html

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